/* ==========================================================================
   CYBER LAW & DIGITAL LEGAL PROTECTION SERVICES
   Premium Vanilla CSS3 Design System
   Architecture: Government Cyber Portal + Modern Legal Consultancy + Enterprise Sec
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Color Palette */
  --primary: #071D49;
  --primary-dark: #030D22;
  --primary-deep: #051433;
  --primary-light: #0E3175;
  --primary-surface: rgba(7, 29, 73, 0.85);

  --secondary: #0EA5E9;
  --secondary-light: #38BDF8;
  --secondary-dark: #0284C7;
  --secondary-glow: rgba(14, 165, 233, 0.35);
  --secondary-subtle: rgba(14, 165, 233, 0.08);

  --accent-gold: #D4AF37;
  --accent-gold-light: #F3E5AB;
  --accent-gold-dark: #B38F22;
  --accent-gold-glow: rgba(212, 175, 55, 0.3);

  --white: #FFFFFF;
  --bg-page: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-dark: #07132B;
  --bg-dark-card: #0C1E40;

  --text-dark: #111827;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-light: #F1F5F9;

  --border-light: #E2E8F0;
  --border-medium: #CBD5E1;
  --border-dark: rgba(255, 255, 255, 0.12);
  --border-glow: rgba(14, 165, 233, 0.4);

  --danger: #EF4444;
  --danger-bg: rgba(239, 68, 68, 0.1);
  --success: #10B981;
  --success-bg: rgba(16, 185, 129, 0.1);
  --warning: #F59E0B;

  /* Typography */
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 25px -5px rgba(7, 29, 73, 0.12), 0 8px 10px -6px rgba(7, 29, 73, 0.08);
  --shadow-cyber: 0 0 25px rgba(14, 165, 233, 0.25);
  --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.25);

  /* Transitions & Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 9999px;
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

/* --- Container & Layout Utilities --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-narrow {
  max-width: 860px;
}

.section-padding {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.section-padding-sm {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

/* --- Typography Utilities --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.section-title-wrap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary-dark);
  background: var(--secondary-subtle);
  border: 1px solid rgba(14, 165, 233, 0.25);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.section-tag.gold {
  color: var(--accent-gold-dark);
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Button Component System --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(7, 29, 73, 0.35);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, #164094 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(7, 29, 73, 0.45);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px var(--secondary-glow);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.5);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #2ae26e 0%, #159a8b 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: var(--primary-dark);
  font-weight: 700;
  box-shadow: 0 4px 15px var(--accent-gold-glow);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--border-medium);
}

.btn-outline:hover {
  background: var(--bg-alt);
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.125rem 2.25rem;
  font-size: 1.0625rem;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 0.5rem 1.125rem;
  font-size: 0.875rem;
}

.btn-full {
  width: 100%;
}

/* --- Emergency Alert Ticker Bar --- */
.emergency-ticker-bar {
  background: linear-gradient(90deg, #991B1B 0%, #B91C1C 40%, #071D49 100%);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.55rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 1001;
}

.ticker-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.ticker-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ticker-badge {
  background: #FEF2F2;
  color: #DC2626;
  font-weight: 700;
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  animation: pulseAlert 2s infinite;
}

.ticker-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #DC2626;
  border-radius: 50%;
  display: inline-block;
}

.ticker-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.ticker-link {
  color: var(--accent-gold-light);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.ticker-link:hover {
  text-decoration: underline;
}

/* --- Header & Navigation Bar --- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(7, 29, 73, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 1.5rem;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-symbol {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(7, 29, 73, 0.2);
  color: var(--secondary-light);
  flex-shrink: 0;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.brand-name span {
  color: var(--secondary);
}

.brand-tagline {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-gold-dark);
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 0.5rem 0;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-dark);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-medium);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--primary);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.mobile-toggle svg {
  width: 22px;
  height: 22px;
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 360px;
  height: 100vh;
  background: var(--white);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  z-index: 1010;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.mobile-close-btn {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
  padding: 0.25rem;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  display: block;
}

.mobile-nav-links a.active {
  color: var(--secondary);
}

.mobile-drawer-footer {
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 29, 73, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1005;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.drawer-backdrop.visible {
  opacity: 1;
  visibility: visible;
}

/* --- HERO SECTION WITH INTERACTIVE CYBER CANVAS --- */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 70% 30%, #0c2b64 0%, #071D49 60%, #030D22 100%);
  color: var(--white);
  padding-top: 6rem;
  padding-bottom: 7rem;
  overflow: hidden;
}

/* Canvas Canvas Layer */
.cyber-canvas-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Digital Grid Background Effect */
.hero-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(14, 165, 233, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(14, 165, 233, 0.07) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 75%);
  z-index: 2;
  pointer-events: none;
}

.hero-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.hero-glow-1 {
  width: 450px;
  height: 450px;
  background: rgba(14, 165, 233, 0.18);
  top: -100px;
  right: 5%;
}

.hero-glow-2 {
  width: 350px;
  height: 350px;
  background: rgba(212, 175, 55, 0.12);
  bottom: -50px;
  left: 10%;
}

.hero-container {
  position: relative;
  z-index: 3;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3.5rem;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.35);
  padding: 0.4rem 1.125rem;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--secondary-light);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(6px);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--secondary-light);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--secondary-light);
  animation: pulseDot 1.8s infinite;
}

.hero-title {
  font-size: 3.25rem;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.35rem;
  font-weight: 800;
}

.hero-title .text-gradient {
  background: linear-gradient(135deg, #FFFFFF 30%, var(--secondary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title .text-gold {
  color: var(--accent-gold-light);
  -webkit-text-fill-color: initial;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #CBD5E1;
  margin-bottom: 2.25rem;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.84rem;
  color: #94A3B8;
}

.hero-trust-item svg {
  color: var(--accent-gold);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Hero Cyber Shield Graphic / Interactive Card */
.hero-visual-card {
  position: relative;
  background: rgba(12, 30, 64, 0.65);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: 0 25px 50px -12px rgba(3, 13, 34, 0.6), var(--shadow-cyber);
  backdrop-filter: blur(14px);
}

.hero-visual-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.6) 0%, rgba(212, 175, 55, 0.4) 50%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.shield-graphic-wrap {
  text-align: center;
  position: relative;
  margin-bottom: 1.75rem;
}

.shield-svg-container {
  width: 130px;
  height: 130px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-svg-container svg.main-shield {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 15px rgba(14, 165, 233, 0.5));
  animation: shieldHover 4s ease-in-out infinite;
}

.radar-sweep-ring {
  position: absolute;
  width: 160px;
  height: 160px;
  border: 1px dashed rgba(14, 165, 233, 0.35);
  border-radius: 50%;
  animation: rotateRadar 16s linear infinite;
}

.radar-sweep-ring-outer {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 1px dotted rgba(212, 175, 55, 0.25);
  border-radius: 50%;
  animation: rotateRadarReverse 24s linear infinite;
}

.card-status-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.status-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary-light);
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #34D399;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10B981;
}

.incident-quick-bar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.incident-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7, 20, 48, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.625rem 0.875rem;
  font-size: 0.8125rem;
}

.incident-info-row .label {
  color: #94A3B8;
}

.incident-info-row .value {
  color: var(--white);
  font-weight: 600;
}

.incident-info-row .value.highlight {
  color: var(--accent-gold-light);
}

/* --- SECTION 2: TRUST METRICS --- */
.trust-metrics-section {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  margin-top: -2.5rem;
  z-index: 10;
}

.metrics-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--border-light);
  overflow: hidden;
}

.metric-card {
  padding: 2.25rem 1.75rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  background: var(--white);
}

.metric-card:hover {
  background: #F8FAFC;
  transform: translateY(-2px);
}

.metric-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--secondary);
  opacity: 0;
  transition: var(--transition);
}

.metric-card:hover::after {
  opacity: 1;
}

.metric-icon-wrap {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.875rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-subtle);
  border-radius: var(--radius-md);
  color: var(--secondary-dark);
}

.metric-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.metric-label {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.metric-sublabel {
  font-size: 0.785rem;
  color: var(--text-muted);
}

/* --- SECTION 3: SERVICES OVERVIEW (6 CARDS) --- */
.services-overview-section {
  background: var(--bg-page);
}

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

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 2.25rem 1.85rem;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 165, 233, 0.4);
  box-shadow: var(--shadow-xl), 0 0 20px rgba(14, 165, 233, 0.12);
}

.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(7, 29, 73, 0.06) 0%, rgba(14, 165, 233, 0.12) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  border: 1px solid rgba(14, 165, 233, 0.2);
}

.service-badge {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  background: var(--secondary-subtle);
  color: var(--secondary-dark);
}

.service-title {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-remedies {
  list-style: none;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}

.service-remedies li {
  font-size: 0.8125rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}

.service-remedies li svg {
  color: var(--secondary);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.service-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--secondary-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
}

.service-link:hover {
  color: var(--primary);
  gap: 0.65rem;
}

/* --- SECTION 4: WHY CHOOSE US --- */
.why-choose-section {
  background: linear-gradient(180deg, #071D49 0%, #030D22 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-choose-section .section-title {
  color: var(--white);
}

.why-choose-section .section-desc {
  color: #94A3B8;
}

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

.why-card {
  background: rgba(12, 30, 64, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  transition: var(--transition);
  position: relative;
  backdrop-filter: blur(8px);
}

.why-card:hover {
  background: rgba(12, 30, 64, 0.85);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35), var(--shadow-gold);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  margin-bottom: 1.25rem;
}

.why-title {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.65rem;
}

.why-desc {
  font-size: 0.925rem;
  color: #CBD5E1;
  line-height: 1.6;
}

/* --- SECTION 5: TESTIMONIALS SLIDER --- */
.testimonials-section {
  background: var(--white);
  overflow: hidden;
}

.testimonials-slider-wrap {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.slider-track-container {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.slider-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
}

.testimonial-card {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-quote-icon {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  color: rgba(14, 165, 233, 0.15);
  width: 60px;
  height: 60px;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  color: var(--accent-gold);
  margin-bottom: 1.25rem;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-gold);
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 2;
}

.testimonial-author-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.25rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 0.15rem;
}

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

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--success);
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-medium);
  background: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.slider-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-medium);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  width: 28px;
  border-radius: 6px;
  background: var(--secondary);
}

/* --- SECTION 6: LARGE CTA BANNER --- */
.cta-banner-section {
  background: linear-gradient(135deg, #071D49 0%, #0c2b66 60%, #030D22 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  border-top: 2px solid var(--accent-gold);
}

.cta-banner-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.cta-banner-title {
  font-size: 2.75rem;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.cta-banner-desc {
  font-size: 1.15rem;
  color: #CBD5E1;
  margin-bottom: 2.25rem;
  line-height: 1.6;
}

.cta-buttons-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.golden-hour-warning {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #FCA5A5;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  margin-top: 1.75rem;
}

/* --- SECTION 7: PREMIUM FOOTER --- */
.site-footer {
  background: #040D21;
  color: #94A3B8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 5rem;
  padding-bottom: 2rem;
  font-size: 0.875rem;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand-wrap p {
  margin-top: 1rem;
  line-height: 1.6;
  color: #94A3B8;
  max-width: 320px;
}

.footer-compliance-seals {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.compliance-seal {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-gold);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.05);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--secondary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #94A3B8;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary-light);
  padding-left: 4px;
}

.footer-contact-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #94A3B8;
}

.footer-contact-item svg {
  color: var(--secondary);
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: var(--white);
  font-weight: 500;
}

.footer-contact-item a:hover {
  color: var(--secondary-light);
}

/* Legal Disclaimer Box */
.footer-disclaimer-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 2.5rem;
  font-size: 0.785rem;
  color: #64748B;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.8125rem;
  color: #64748B;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-bottom-links a {
  color: #64748B;
  font-size: 0.8125rem;
}

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

/* --- SERVICES PAGE SPECIFIC STYLING --- */
.page-header-banner {
  background: radial-gradient(circle at 80% 20%, #0d3175 0%, #071D49 70%, #030D22 100%);
  color: var(--white);
  padding: 4.5rem 0 4rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(14, 165, 233, 0.2);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #94A3B8;
  margin-bottom: 1rem;
}

.breadcrumbs a:hover {
  color: var(--secondary-light);
}

.service-category-block {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-category-block:hover {
  box-shadow: var(--shadow-lg);
}

.category-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--bg-alt);
  gap: 1.5rem;
  flex-wrap: wrap;
}

.category-icon-title {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.cat-icon-box {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--secondary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(7, 29, 73, 0.2);
  flex-shrink: 0;
}

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

.sub-service-item {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
}

.sub-service-item:hover {
  background: var(--white);
  border-color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.sub-service-item h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.sub-service-item p {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.law-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  background: #E2E8F0;
  color: #475569;
}

.victim-checklist-box {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.checklist-left h5 {
  font-size: 0.95rem;
  color: #1E40AF;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checklist-left p {
  font-size: 0.8125rem;
  color: #3B82F6;
}

/* --- CONTACT PAGE SPECIFIC STYLING --- */
.contact-layout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: flex-start;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--text-dark);
  font-size: 0.9375rem;
  transition: var(--transition);
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px var(--secondary-glow);
}

.form-input.error, .form-select.error, .form-textarea.error {
  border-color: var(--danger);
  background: #FEF2F2;
}

.error-message {
  font-size: 0.75rem;
  color: var(--danger);
  margin-top: 0.35rem;
  display: none;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--secondary-subtle);
  color: var(--secondary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-details h5 {
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 0.2rem;
}

.info-details p, .info-details a {
  font-size: 0.875rem;
  color: var(--text-body);
}

.map-placeholder-card {
  background: #0C1E40;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(14, 165, 233, 0.2);
  color: var(--white);
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.map-grid-bg {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.15) 0%, transparent 60%),
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 100% 100%, 30px 30px, 30px 30px;
  pointer-events: none;
}

/* --- LANDING PAGE SPECIFIC (OPTIMIZED FOR HIGH AD CONVERSION) --- */
.landing-page-body {
  background: #030A19;
  color: var(--white);
}

.landing-header-minimal {
  background: rgba(3, 10, 25, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
}

.landing-hero {
  padding: 4rem 0 5rem 0;
  position: relative;
}

.landing-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.landing-title {
  font-size: 3.25rem;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.landing-lead-form-box {
  background: rgba(12, 30, 64, 0.9);
  border: 1.5px solid rgba(14, 165, 233, 0.4);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), var(--shadow-cyber);
  backdrop-filter: blur(16px);
}

.landing-lead-form-box .form-label {
  color: #E2E8F0;
}

.landing-lead-form-box .form-input,
.landing-lead-form-box .form-select {
  background: rgba(7, 20, 48, 0.8);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.landing-lead-form-box .form-input:focus,
.landing-lead-form-box .form-select:focus {
  border-color: var(--secondary-light);
  background: rgba(7, 20, 48, 0.95);
}

.landing-lead-form-box .form-select option {
  background: #071D49;
  color: var(--white);
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.step-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--secondary);
  transform: translateY(-4px);
}

.step-number-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 15px var(--secondary-glow);
}

.benefits-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  background: rgba(12, 30, 64, 0.6);
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem auto;
  border-radius: var(--radius-md);
  background: rgba(14, 165, 233, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-light);
}

/* --- FLOATING ACTIONS: LEFT (BACK TO MAIN) & RIGHT (WHATSAPP + SCROLL TO TOP) --- */
/* Floating Back to Main Website (Bottom-Left Corner) */
.floating-back-wrap {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
}

.floating-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(7, 29, 73, 0.95);
  color: var(--white);
  border: 1.5px solid rgba(14, 165, 233, 0.5);
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.25rem 0.75rem 0.9rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(7, 29, 73, 0.4), 0 0 15px rgba(14, 165, 233, 0.25);
  backdrop-filter: blur(12px);
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  animation: floatSubtle 3.5s ease-in-out infinite;
  white-space: nowrap;
}

.floating-back-btn .back-btn-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.15);
  color: var(--secondary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.floating-back-btn .back-btn-text {
  color: var(--white);
  letter-spacing: -0.01em;
}

.floating-back-btn .back-btn-tag {
  background: rgba(212, 175, 55, 0.18);
  color: var(--accent-gold-light);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 999px;
  font-size: 0.685rem;
  padding: 0.15rem 0.5rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.floating-back-btn:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: var(--secondary-light);
  background: var(--primary);
  box-shadow: 0 12px 28px rgba(14, 165, 233, 0.4), 0 0 22px rgba(14, 165, 233, 0.35);
  color: var(--white);
}

.floating-back-btn:hover .back-btn-icon {
  background: var(--secondary);
  color: var(--white);
  transform: translateX(-3px);
}

/* Floating Actions: Right Side (WhatsApp + Scroll To Top) */
.floating-actions-wrap {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.875rem;
  z-index: 999;
}

.floating-whatsapp-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
}

.floating-whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.6;
  animation: pulseRipple 2.2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.55);
}

.floating-whatsapp-btn svg {
  width: 32px;
  height: 32px;
}

.whatsapp-popup-box {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 320px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 35px rgba(7, 29, 73, 0.25);
  border: 1px solid var(--border-light);
  overflow: hidden;
  display: none;
  animation: fadeIn 0.25s ease forwards;
}

.whatsapp-popup-box.active {
  display: block;
}

.wa-popup-header {
  background: #075E54;
  color: var(--white);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wa-popup-body {
  padding: 1.25rem;
  background: #E5DDD5;
}

.wa-chat-bubble {
  background: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
  font-size: 0.84rem;
  color: var(--text-dark);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  position: relative;
}

.scroll-top-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  position: relative;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.scroll-progress-ring {
  position: absolute;
  top: -2px;
  left: -2px;
  width: 48px;
  height: 48px;
  transform: rotate(-90deg);
  pointer-events: none;
}

.scroll-progress-ring circle {
  fill: none;
  stroke: var(--secondary);
  stroke-width: 2.5;
  stroke-dasharray: 140;
  stroke-dashoffset: 140;
  transition: stroke-dashoffset 0.1s linear;
}

/* --- MODAL SYSTEM (CONSULTATION BOOKING & CASE CONFIRMATION) --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 10, 25, 0.75);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.open .modal-container {
  transform: scale(1);
}

.modal-header {
  padding: 1.5rem 2rem;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  color: var(--white);
  font-size: 1.25rem;
}

.modal-close-btn {
  background: transparent;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
}

.modal-body {
  padding: 2rem;
}

/* --- ANIMATION KEYFRAMES --- */
@keyframes pulseAlert {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

@keyframes pulseDot {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes pulseRipple {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

@keyframes rotateRadar {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotateRadarReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

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

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes borderGlowPulse {
  0%, 100% { border-color: rgba(14, 165, 233, 0.4); box-shadow: 0 0 15px rgba(14, 165, 233, 0.2); }
  50% { border-color: rgba(14, 165, 233, 0.85); box-shadow: 0 0 25px rgba(14, 165, 233, 0.45); }
}

@keyframes pulseGlowGold {
  0%, 100% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.3); }
  50% { box-shadow: 0 0 22px rgba(212, 175, 55, 0.65); }
}

/* Scroll Animation Observer Classes */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.fade-in.in-view {
  opacity: 1;
}

.slide-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce), print {
  .fade-up,
  .fade-in,
  .slide-in-right,
  .slide-in-left {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* --- FAQ ACCORDION COMPONENT (ELEMENTOR & STANDALONE COMPATIBLE) --- */
.faq-section {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

/* --- SECTION 6: REDESIGNED FAQ SECTION (PREMIUM LEGAL-TECH HIGHLIGHT) --- */
.faq-section {
  position: relative;
  overflow: hidden;
  background: #F8FAFC;
  padding: 6rem 0;
}

.faq-bg-circuit-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 15% 30%, rgba(14, 165, 233, 0.07) 0%, transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(212, 175, 55, 0.06) 0%, transparent 45%),
    linear-gradient(rgba(14, 165, 233, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 48px 48px, 48px 48px;
  pointer-events: none;
  z-index: 1;
}

.faq-watermark-icon {
  position: absolute;
  right: -5%;
  bottom: -10%;
  width: 480px;
  height: 480px;
  color: rgba(7, 29, 73, 0.025);
  pointer-events: none;
  z-index: 1;
}

.faq-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(7, 29, 73, 0.06);
  border: 1px solid rgba(14, 165, 233, 0.3);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 0.85rem;
}

.faq-layout-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

/* FAQ Advisory Helpdesk Card */
.faq-advisory-card {
  background: var(--white);
  border: 1.5px solid rgba(14, 165, 233, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 36px rgba(7, 29, 73, 0.08);
  overflow: hidden;
  position: sticky;
  top: 100px;
  transition: var(--transition);
}

.faq-advisory-card:hover {
  box-shadow: 0 20px 45px rgba(14, 165, 233, 0.15);
  border-color: var(--secondary);
}

.advisory-card-header {
  background: linear-gradient(135deg, var(--primary) 0%, #0D2D68 100%);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}

.live-duty-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #34D399;
}

.duty-response-time {
  font-size: 0.72rem;
  font-weight: 600;
  color: #94A3B8;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-pill);
}

.advisory-card-body {
  padding: 1.5rem;
}

.advisory-visual-wrap {
  position: relative;
  height: 140px;
  background: linear-gradient(135deg, #071D49 0%, #0E3175 100%);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.advisory-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.advisory-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 29, 73, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 0.75rem;
}

.advisory-shield-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent-gold-light);
  font-size: 0.72rem;
  font-weight: 600;
}

.advisory-title {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.advisory-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.advisory-metrics-list {
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
}

.advisory-metric-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  padding: 0.3rem 0;
}

.advisory-metric-row:not(:last-child) {
  border-bottom: 1px dashed #E2E8F0;
}

.advisory-metric-row .metric-key {
  color: #64748B;
}

.advisory-metric-row .metric-val {
  color: var(--primary);
  font-weight: 700;
}

.advisory-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.advisory-helpline-note {
  text-align: center;
  font-size: 0.785rem;
  color: #64748B;
  margin-top: 0.35rem;
}

.advisory-helpline-note a {
  color: var(--secondary-dark);
  font-weight: 700;
  text-decoration: none;
}

/* FAQ Accordion Stack */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(7, 29, 73, 0.04);
}

.faq-item:hover {
  border-color: rgba(14, 165, 233, 0.5);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.1);
  transform: translateY(-2px);
}

.faq-item.active {
  border-color: var(--secondary);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(14, 165, 233, 0.16), 0 0 0 1px rgba(14, 165, 233, 0.25);
  transform: translateY(-2px);
}

.faq-question,
.faq-trigger {
  width: 100%;
  padding: 1.35rem 1.65rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.faq-q-content {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex-grow: 1;
}

.faq-meta-pill-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.faq-index-number {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: #94A3B8;
  letter-spacing: 0.05em;
}

.faq-category-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-pill);
  background: rgba(14, 165, 233, 0.1);
  color: var(--secondary-dark);
}

.faq-category-tag.gold {
  background: rgba(212, 175, 55, 0.12);
  color: #B45309;
}

.faq-category-tag.red {
  background: rgba(239, 68, 68, 0.1);
  color: #DC2626;
}

.faq-category-tag.green {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.faq-question-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
  margin: 0;
  transition: color 0.2s;
}

.faq-item:hover .faq-question-text,
.faq-item.active .faq-question-text {
  color: var(--secondary-dark);
}

.faq-toggle-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F1F5F9;
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #E2E8F0;
}

.faq-item:hover .faq-toggle-icon {
  background: var(--secondary-subtle);
  border-color: rgba(14, 165, 233, 0.3);
}

.faq-item.active .faq-toggle-icon,
.faq-question[aria-expanded="true"] .faq-toggle-icon,
.faq-trigger[aria-expanded="true"] .faq-icon {
  background: var(--secondary);
  color: var(--white);
  transform: rotate(45deg);
  box-shadow: 0 0 12px var(--secondary-glow);
  border-color: var(--secondary);
}

.faq-answer,
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-answer,
.faq-item.active .faq-content,
.faq-content.open {
  max-height: 800px;
  opacity: 1;
}

.faq-answer-inner,
.faq-content-inner {
  padding: 0 1.65rem 1.65rem 1.65rem;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid #F1F5F9;
  padding-top: 1.15rem;
}

.faq-answer-inner p:not(:last-child) {
  margin-bottom: 0.75rem;
}

.faq-action-callout {
  margin-top: 1.15rem;
  padding: 0.85rem 1.15rem;
  background: #F8FAFC;
  border-left: 3px solid var(--secondary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.85rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-action-callout a {
  color: var(--secondary-dark);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.faq-action-callout a:hover {
  text-decoration: underline;
}

/* Service Card Thumbnail Images */
.service-card-with-thumb {
  padding: 0;
  overflow: hidden;
}

.service-card-thumb-wrap {
  position: relative;
  height: 160px;
  width: 100%;
  overflow: hidden;
  background: #040D21;
}

.service-card-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.service-card:hover .service-card-thumb-img {
  transform: scale(1.06);
}

.service-card-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 29, 73, 0.15) 0%, rgba(7, 29, 73, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1rem 1.25rem;
}

.service-body-content {
  padding: 1.75rem 1.85rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

@media (max-width: 992px) {
  .faq-layout-grid {
    grid-template-columns: 1fr;
  }
  .faq-advisory-card {
    position: static;
  }
}

/* --- STICKY BOTTOM MOBILE ACTION BAR (HIGH CONVERSION) --- */
.sticky-mobile-cta-bar {
  display: none;
}

@media (max-width: 768px) {
  .sticky-mobile-cta-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(7, 29, 73, 0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(14, 165, 233, 0.35);
    padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0px)) 1rem;
    box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.45);
  }

  .mobile-cta-inner {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
  }

  /* Safe clearance for floating buttons above mobile sticky bar */
  .floating-actions-wrap {
    bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
    right: 1rem;
    gap: 0.5rem;
  }

  .floating-whatsapp-btn {
    width: 52px;
    height: 52px;
  }

  .floating-whatsapp-btn svg {
    width: 26px;
    height: 26px;
  }

  .scroll-top-btn {
    width: 38px;
    height: 38px;
  }

  .floating-back-wrap {
    bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
    left: 1rem;
  }

  .floating-back-btn {
    padding: 0.5rem 0.85rem;
    font-size: 0.8rem;
    gap: 0.45rem;
  }

  .floating-back-btn .back-btn-icon {
    width: 26px;
    height: 26px;
  }

  .floating-back-btn .back-btn-tag {
    display: none;
  }
}

/* --- CASE SUCCESS & TICKET CONFIRMATION MODAL --- */
.case-success-modal {
  position: fixed;
  inset: 0;
  background: rgba(3, 10, 25, 0.85);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.case-success-modal.open,
.case-success-modal.active {
  opacity: 1;
  visibility: visible;
}

.case-success-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 550px;
  width: 100%;
  padding: 2.25rem;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  border: 2px solid var(--secondary);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.case-success-modal.open .case-success-card,
.case-success-modal.active .case-success-card {
  transform: scale(1);
}

.success-icon-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10B981 0%, #047857 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.ticket-box {
  background: #F8FAFC;
  border: 1.5px dashed #CBD5E1;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin: 1.25rem 0;
  text-align: left;
}

.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.785rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.ticket-id {
  font-family: monospace;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.05em;
}

.ticket-status-pill {
  background: rgba(16, 185, 129, 0.12);
  color: #065F46;
  border: 1px solid #A7F3D0;
  border-radius: 999px;
  padding: 0.15rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
}

/* --- WORDPRESS & ELEMENTOR FREE + ASTRA THEME COMPATIBILITY LAYER --- */
/* Standard Elementor Container and Grid Emulation */
.elementor-section {
  position: relative;
  width: 100%;
}

.elementor-top-section {
  position: relative;
}

.elementor-section-boxed > .elementor-container {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  width: 100%;
}

.elementor-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.elementor-column {
  position: relative;
  min-height: 1px;
  display: flex;
}

.elementor-col-100 { width: 100%; }
.elementor-col-50 { width: 50%; }
.elementor-col-33 { width: 33.333%; }
.elementor-col-25 { width: 25%; }

.elementor-widget-wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.elementor-heading-title {
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 700;
}

.elementor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

/* WordPress Plugin Form Wrappers (Contact Form 7, WPForms, Elementor Forms) */
.wpcf7-form,
.wpforms-form,
.elementor-form {
  position: relative;
  width: 100%;
}

.elementor-field-group {
  margin-bottom: 1.25rem;
}

.elementor-field {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-dark);
}

.elementor-field:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px var(--secondary-glow);
  outline: none;
}

/* Elementor Section Identifier Utility Anchors */
.elementor-section-header { z-index: 100; }
.elementor-section-hero { position: relative; }
.elementor-section-trust { background: var(--white); }
.elementor-section-services { background: var(--bg-page); }
.elementor-section-why-us { background: var(--white); }
.elementor-section-testimonials { background: var(--bg-page); }
.elementor-section-faq { background: var(--white); }
.elementor-section-cta { background: var(--primary); }
.elementor-section-contact { background: var(--bg-page); }
.elementor-section-footer { background: var(--bg-dark); }

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .hero-layout,
  .landing-grid,
  .contact-layout-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .how-it-works-grid,
  .benefits-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: 2.75rem;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .nav-menu,
  .header-actions .btn-sm {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-title,
  .landing-title {
    font-size: 2.15rem;
  }

  .section-title,
  .cta-banner-title {
    font-size: 1.85rem;
  }

  .services-grid,
  .why-grid,
  .sub-services-grid,
  .metrics-wrapper,
  .how-it-works-grid,
  .benefits-cards-grid,
  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .metrics-wrapper {
    divide-x: 0;
    divide-y: 1px solid var(--border-light);
  }

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

  .ticker-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Floating Action Button mobile clearance above sticky bar */
  .floating-actions-wrap {
    bottom: 4.85rem;
    right: 1rem;
    gap: 0.5rem;
  }

  .floating-back-wrap {
    bottom: 4.85rem;
    left: 1rem;
  }

  .floating-back-btn {
    padding: 0.6rem 0.85rem;
    font-size: 0.785rem;
    gap: 0.45rem;
  }

  .floating-back-btn .back-btn-icon {
    width: 28px;
    height: 28px;
  }

  .floating-back-btn .back-btn-tag {
    display: none; /* Hide tag on tiny screens to keep pill compact */
  }

  .floating-whatsapp-btn {
    width: 52px;
    height: 52px;
  }

  .floating-whatsapp-btn svg {
    width: 26px;
    height: 26px;
  }
}

/* ==========================================================================
   LANDING PAGE HEADER & NAVIGATION SUITE (TRANSPARENT-TO-SOLID + SCROLL SPY)
   ========================================================================== */
.landing-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(4, 13, 33, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(14, 165, 233, 0.18);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-header.scrolled {
  background: rgba(4, 13, 33, 0.98);
  border-bottom-color: rgba(14, 165, 233, 0.4);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.6);
}

.landing-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 1.5rem;
}

.landing-nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.landing-nav-link {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 500;
  color: #E2E8F0;
  padding: 0.5rem 0;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.landing-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--accent-gold) 100%);
  transition: width 0.25s ease;
  border-radius: 2px;
}

.landing-nav-link:hover {
  color: var(--secondary-light);
}

.landing-nav-link:hover::after,
.landing-nav-link.active::after {
  width: 100%;
}

.landing-nav-link.active {
  color: var(--white);
  font-weight: 600;
}

.landing-header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.landing-header .mobile-toggle {
  display: none;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: var(--white);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.landing-header .mobile-toggle:hover {
  background: rgba(14, 165, 233, 0.25);
  border-color: var(--secondary);
}

@media (max-width: 992px) {
  .landing-nav-menu {
    display: none;
  }
  .landing-header .mobile-toggle {
    display: flex;
  }
  .landing-header-right .secure-badge {
    display: none;
  }
}

/* Landing Page Specific Section Enhancements */
.landing-section-highlight {
  position: relative;
  overflow: hidden;
}

.landing-contact-card {
  background: rgba(7, 20, 48, 0.85);
  border: 1.5px solid rgba(14, 165, 233, 0.35);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
}


