/**
 * Main Theme CSS - Web Techiq Official
 * Developed by MH Badhon Ahmed (Web Techiq)
 */

/* ==========================================================================
   1. Root Default CSS Variables (Overridden by Customizer Dynamic CSS)
   ========================================================================== */
:root {
  /* Colors (Extracted from Brand Logo Spectrum) */
  --wt-primary-color: #ff6b00;
  --wt-secondary-color: #0b1120;
  --wt-accent-color: #7c3aed;
  --wt-accent-cyan: #00b4d8;
  --wt-accent-magenta: #e60067;
  --wt-bg-color-1: #fef1e1;
  --wt-bg-color-2: #ffffff;
  --wt-aurora-cyan: rgba(0, 180, 216, 0.14);
  --wt-aurora-violet: rgba(124, 58, 237, 0.10);
  --wt-bg-gradient: radial-gradient(circle at 18% 12%, var(--wt-bg-color-1) 0%, rgba(254, 241, 225, 0.85) 30%, transparent 65%),
                    radial-gradient(circle at 88% 16%, var(--wt-aurora-cyan) 0%, transparent 46%),
                    radial-gradient(circle at 50% 48%, var(--wt-aurora-violet) 0%, transparent 52%),
                    radial-gradient(circle at 12% 78%, rgba(255, 107, 0, 0.11) 0%, transparent 48%),
                    radial-gradient(circle at 85% 85%, rgba(0, 180, 216, 0.09) 0%, transparent 50%),
                    var(--wt-bg-color-2);
  --wt-heading-color: #0d1b2a;
  --wt-body-color: #4a5568;
  --wt-link-color: #ff6b00;
  --wt-link-hover-color: #e05d00;
  --wt-logo-height: 45px;

  /* Typography */
  --wt-body-font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --wt-heading-font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --wt-body-font-size: 16px;
  --wt-body-font-weight: 400;
  --wt-body-line-height: 1.6;
  --wt-body-letter-spacing: 0px;

  --wt-subtitle-font-size: 18px;
  --wt-subtitle-font-weight: 500;
  --wt-subtitle-line-height: 1.5;

  --wt-h1-font-size: 48px;
  --wt-h1-font-weight: 700;
  --wt-h1-line-height: 1.2;
  --wt-h1-letter-spacing: -0.5px;

  --wt-h2-font-size: 36px;
  --wt-h2-font-weight: 700;
  --wt-h2-line-height: 1.25;

  --wt-h3-font-size: 28px;
  --wt-h3-font-weight: 600;
  --wt-h3-line-height: 1.3;

  --wt-h4-font-size: 22px;
  --wt-h4-font-weight: 600;
  --wt-h4-line-height: 1.35;

  --wt-h5-font-size: 18px;
  --wt-h5-font-weight: 600;
  --wt-h5-line-height: 1.4;

  --wt-h6-font-size: 16px;
  --wt-h6-font-weight: 600;
  --wt-h6-line-height: 1.4;

  /* Primary Button (Gradient from Brand Arrow to Swoosh Ribbon) */
  --wt-btn-primary-bg: linear-gradient(135deg, #ff6b00 0%, #e60067 50%, #7c3aed 100%);
  --wt-btn-primary-text: #ffffff;
  --wt-btn-primary-hover-bg: linear-gradient(135deg, #e05d00 0%, #c40055 50%, #6d28d9 100%);
  --wt-btn-primary-hover-text: #ffffff;

  /* Secondary Button */
  --wt-btn-secondary-bg: #0b1120;
  --wt-btn-secondary-text: #ffffff;
  --wt-btn-secondary-hover-bg: #1e293b;
  --wt-btn-secondary-hover-text: #ffffff;

  /* Button Layout */
  --wt-btn-padding-tb: 12px;
  --wt-btn-padding-lr: 24px;
  --wt-btn-border-radius: 50px;
  --wt-btn-border-width: 0px;
  --wt-btn-border-color: transparent;
  --wt-btn-font-size: 15px;
  --wt-btn-font-weight: 600;
  --wt-btn-text-transform: none;
  --wt-btn-box-shadow: 0 4px 18px rgba(255, 107, 0, 0.35);
  --wt-btn-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   2. Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Screen Reader Text & Skip Link Accessibility Rules ────────────────── */
.screen-reader-text,
.skip-link {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  word-wrap: normal !important;
}

.skip-link:focus {
  background-color: var(--wt-primary-color, #ff6b00) !important;
  border-radius: 6px !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4) !important;
  clip: auto !important;
  -webkit-clip-path: none !important;
  clip-path: none !important;
  color: #ffffff !important;
  display: block !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  height: auto !important;
  left: 10px !important;
  line-height: normal !important;
  padding: 10px 20px !important;
  text-decoration: none !important;
  top: 10px !important;
  width: auto !important;
  z-index: 100000 !important;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--wt-primary-color, #ff6b00) rgba(13, 27, 42, 0.05);
  background-color: var(--wt-footer-bg-color, #0b132b) !important; /* Prevents any white gap at bottom of viewport */
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── 60/120 FPS GPU Compositing Acceleration Utilities ─────────────────── */
.wt-gpu-accelerated,
.hero-slider-track,
.clients-marquee-track,
.reviews-marquee-track,
.global-footprint-track {
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

/* ── Interactive Spotlight Card Border Glow (Linear / Vercel Aesthetic) ── */
.pkg-card-inner,
.wt-service-item,
.wt-project-card,
.process-step-item,
.wt-feature-card,
.hero-glass-card {
  position: relative;
}

.pkg-card-inner::after,
.wt-service-item::after,
.wt-project-card::after,
.process-step-item::after,
.wt-feature-card::after,
.hero-glass-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(
    380px circle at var(--mouse-x, -999px) var(--mouse-y, -999px),
    rgba(255, 107, 0, 0.35),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 4;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1.5px;
}

.pkg-card-inner:hover::after,
.wt-service-item:hover::after,
.wt-project-card:hover::after,
.process-step-item:hover::after,
.wt-feature-card:hover::after,
.hero-glass-card:hover::after {
  opacity: 1;
}

/* ==========================================================================
   Modern Theme-Matching Custom Scrollbar System & Animated Scroll Progress Bar
   ========================================================================== */
/* WebKit Scrollbar Styling (Chrome, Safari, Edge, Opera) */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(13, 27, 42, 0.04);
  border-left: 1px solid rgba(0, 0, 0, 0.04);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--wt-primary-color, #ff6b00) 0%, #ff8e00 50%, var(--wt-link-hover-color, #e05d00) 100%);
  border-radius: 20px;
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff8e00 0%, var(--wt-primary-color, #ff6b00) 60%, #c44e00 100%);
  background-clip: padding-box;
  box-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
}

::-webkit-scrollbar-thumb:active {
  background: var(--wt-link-hover-color, #e05d00);
  background-clip: padding-box;
}

/* Top Viewport Animated Scroll Progress Bar */
.wt-scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3.5px;
  background: linear-gradient(90deg, var(--wt-primary-color, #ff6b00) 0%, #ff9800 45%, var(--wt-accent-color, #00b4d8) 100%);
  z-index: 999999;
  box-shadow: 0 0 10px rgba(255, 107, 0, 0.6), 0 0 4px rgba(0, 180, 216, 0.4);
  transition: width 0.1s ease-out;
  pointer-events: none;
}

.wt-scroll-progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, #ffffff 70%, transparent 100%);
  opacity: 0.85;
  animation: scroll-bar-glow 2s infinite linear;
}

@keyframes scroll-bar-glow {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}

/* Selection Color Tint */
::selection {
  background: rgba(255, 107, 0, 0.2);
  color: var(--wt-heading-color, #0d1b2a);
}

body {
  font-family: var(--wt-body-font-family);
  font-size: var(--wt-body-font-size);
  font-weight: var(--wt-body-font-weight);
  line-height: var(--wt-body-line-height);
  letter-spacing: var(--wt-body-letter-spacing);
  color: var(--wt-body-color);
  background-color: var(--wt-bg-color-2, #ffffff);
  background-image: var(--wt-bg-gradient);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100vw 100vh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Structural Page Wrap */
#page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  background: transparent;
}

.site-main {
  flex: 1 0 auto;
  width: 100%;
  /* No default padding — individual page templates control their own spacing */
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ==========================================================================
   3. Typography Rules
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--wt-heading-font-family);
  color: var(--wt-heading-color);
  margin-bottom: 0.5em;
}

h1 {
  font-size: var(--wt-h1-font-size);
  font-weight: var(--wt-h1-font-weight);
  line-height: var(--wt-h1-line-height);
  letter-spacing: var(--wt-h1-letter-spacing);
}

h2 {
  font-size: var(--wt-h2-font-size);
  font-weight: var(--wt-h2-font-weight);
  line-height: var(--wt-h2-line-height);
}

h3 {
  font-size: var(--wt-h3-font-size);
  font-weight: var(--wt-h3-font-weight);
  line-height: var(--wt-h3-line-height);
}

h4 {
  font-size: var(--wt-h4-font-size);
  font-weight: var(--wt-h4-font-weight);
  line-height: var(--wt-h4-line-height);
}

h5 {
  font-size: var(--wt-h5-font-size);
  font-weight: var(--wt-h5-font-weight);
  line-height: var(--wt-h5-line-height);
}

h6 {
  font-size: var(--wt-h6-font-size);
  font-weight: var(--wt-h6-font-weight);
  line-height: var(--wt-h6-line-height);
}

p {
  margin-bottom: 1.25rem;
}

.subtitle, .lead-text {
  font-size: var(--wt-subtitle-font-size);
  font-weight: var(--wt-subtitle-font-weight);
  line-height: var(--wt-subtitle-line-height);
}

a {
  color: var(--wt-link-color);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

a:hover, a:focus {
  color: var(--wt-link-hover-color);
}

/* ==========================================================================
   4. Theme Global Buttons System
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--wt-btn-padding-tb) var(--wt-btn-padding-lr);
  border-radius: var(--wt-btn-border-radius);
  border: var(--wt-btn-border-width) solid var(--wt-btn-border-color);
  font-family: var(--wt-body-font-family);
  font-size: var(--wt-btn-font-size);
  font-weight: var(--wt-btn-font-weight);
  text-transform: var(--wt-btn-text-transform);
  cursor: pointer;
  text-decoration: none;
  transition: var(--wt-btn-transition);
  line-height: 1;
  text-align: center;
}

.btn-primary {
  background: var(--wt-btn-primary-bg);
  color: var(--wt-btn-primary-text);
  box-shadow: var(--wt-btn-box-shadow);
  border: none;
}

.btn-primary:hover, .btn-primary:focus {
  background: var(--wt-btn-primary-hover-bg);
  color: var(--wt-btn-primary-hover-text);
  box-shadow: 0 6px 24px rgba(255, 107, 0, 0.45), 0 0 16px rgba(124, 58, 237, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--wt-btn-secondary-bg);
  color: var(--wt-btn-secondary-text);
}

.btn-secondary:hover, .btn-secondary:focus {
  background-color: var(--wt-btn-secondary-hover-bg);
  color: var(--wt-btn-secondary-hover-text);
  transform: translateY(-2px);
}

/* ==========================================================================
   5. Site Header - 3 Part Pill Navigation Layout (Reference UI)
   ========================================================================== */
/* ── Static Top Announcement Bar (Scrolls Away Naturally) ──────────── */
.wt-top-bar {
  position: relative;
  z-index: 100;
  width: 100%;
}

/* ── Sticky Main Header Wrapper (Only Main Header is Sticky) ───────── */
.site-header-wrap {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  margin: 0;
  padding: 0;
}

body.admin-bar .site-header-wrap {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-header-wrap {
    top: 46px;
  }
}

.site-header {
  position: relative;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding-top: var(--wt-header-padding-top, 14px);
  padding-bottom: var(--wt-header-padding-bottom, 14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

/* Scrolled State - deeper shadow once user scrolls */
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.09);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Left: Logo */
.header-left {
  display: flex;
  align-items: center;
}

.site-branding img {
  max-height: var(--wt-logo-height);
  width: auto;
  display: block;
}

.site-branding .site-title {
  font-size: 24px;
  font-weight: 800;
  margin: 0;
}

.site-branding .site-title a {
  color: var(--wt-heading-color);
}

/* Center: Floating Capsule/Pill Navigation Bar */
.header-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-pill-container {
  position: relative;
  background: #f1f5f9;
  border-radius: 50px;
  padding: 5px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.04);
}

@property --wt-pill-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* Animated Motion Border Light (Header Center Capsule) */
.nav-pill-container.has-animated-border {
  position: relative;
  z-index: 1;
}

.nav-pill-container.has-animated-border .nav-pill-border-glow-ring {
  position: absolute;
  inset: 0px;
  border-radius: 50px;
  padding: 2px;
  background: conic-gradient(
    from var(--wt-pill-angle, 0deg),
    transparent 0%,
    transparent 42%,
    var(--wt-pill-border-color, var(--wt-primary-color, #ff6b00)) 65%,
    #e60067 78%,
    var(--wt-accent-color, #7c3aed) 88%,
    var(--wt-accent-cyan, #00b4d8) 94%,
    var(--wt-pill-border-color, var(--wt-primary-color, #ff6b00)) 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;
  z-index: 10;
  animation: wt-pill-spin var(--wt-pill-border-speed, 4s) linear infinite;
  box-shadow: 0 0 14px rgba(255, 107, 0, 0.2), 0 0 10px rgba(124, 58, 237, 0.15);
}

@keyframes wt-pill-spin {
  0% {
    --wt-pill-angle: 0deg;
  }
  100% {
    --wt-pill-angle: 360deg;
  }
}

/* Glow Intensity Variants */
.nav-pill-container.pill-glow-subtle .nav-pill-border-glow-ring {
  filter: drop-shadow(0 0 4px var(--wt-pill-border-color, var(--wt-primary-color, #ff6b00)));
  opacity: 0.8;
}

.nav-pill-container.pill-glow-medium .nav-pill-border-glow-ring {
  filter: drop-shadow(0 0 9px var(--wt-pill-border-color, var(--wt-primary-color, #ff6b00)));
  opacity: 0.95;
}

.nav-pill-container.pill-glow-intense .nav-pill-border-glow-ring {
  filter: drop-shadow(0 0 14px var(--wt-pill-border-color, var(--wt-primary-color, #ff6b00)))
          drop-shadow(0 0 22px var(--wt-pill-border-color, var(--wt-primary-color, #ff6b00)));
  opacity: 1;
}

.nav-pill-container ul {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 4px;
}

.nav-pill-container li {
  margin: 0;
  padding: 0;
}

.nav-pill-container a {
  display: inline-block;
  color: #475569;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 40px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-pill-container a:hover {
  color: var(--wt-heading-color);
  background: rgba(255, 255, 255, 0.6);
}

/* Active Menu Item Pill Badge (Reference Image Match) */
.nav-pill-container li.current-menu-item > a,
.nav-pill-container li.current_page_item > a,
.nav-pill-container li.current-menu-ancestor > a,
.nav-pill-container li.current-menu-parent > a,
.nav-pill-container li.current_page_ancestor > a,
.nav-pill-container li.current_page_parent > a {
  background: #ffffff;
  color: var(--wt-heading-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  font-weight: 700;
}

/* Right: Action Button */
.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-cta-btn {
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 50px;
}

/* Mobile Toggle Hamburger Button (Always Prominently Visible on Mobile) */
.menu-toggle {
  display: none;
  background: var(--wt-secondary-color, #0b132b) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 4px 14px rgba(11, 19, 43, 0.25) !important;
  border-radius: 10px !important;
  padding: 10px !important;
  cursor: pointer !important;
  width: 42px !important;
  height: 42px !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 4px !important;
  transition: all 0.25s ease !important;
  z-index: 10 !important;
}

.hamburger-line {
  display: block !important;
  width: 20px !important;
  height: 2.5px !important;
  background: #ffffff !important;
  border-radius: 2px !important;
  transition: all 0.25s ease !important;
}

.menu-toggle:hover {
  background: #1e293b !important;
  border-color: var(--wt-primary-color, #ff6b00) !important;
  transform: scale(1.04) !important;
}

.menu-toggle:hover .hamburger-line {
  background: var(--wt-primary-color, #ff6b00) !important;
}

/* ── Mobile Navigation Slide Drawer (Theme Gradient Match) ────────── */
body.mobile-drawer-active {
  overflow: hidden !important;
}

.mobile-nav-backdrop {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(11, 19, 43, 0.75) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  z-index: 999998 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 0.35s ease, visibility 0.35s ease !important;
}

.mobile-nav-backdrop.is-open {
  opacity: 1 !important;
  visibility: visible !important;
}

.mobile-nav-drawer {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 350px !important;
  max-width: 90vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  background: var(--wt-bg-gradient, radial-gradient(ellipse at 35% 15%, #fef1e1 0%, rgba(254, 241, 225, 0.45) 45%, #ffffff 75%)) !important;
  background-color: #fef1e1 !important;
  color: var(--wt-heading-color, #0d1b2a) !important;
  z-index: 999999 !important;
  transform: translateX(-100%) !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 8px 0 35px rgba(0, 0, 0, 0.12) !important;
  border-right: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.mobile-nav-drawer.is-open {
  transform: translateX(0) !important;
}

/* Drawer Header */
.mobile-drawer-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 16px 20px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.mobile-drawer-logo img,
.mobile-drawer-logo .custom-logo {
  max-height: 38px !important;
  width: auto !important;
}

.drawer-site-title {
  margin: 0 !important;
  font-size: 19px !important;
  font-weight: 800 !important;
}

.drawer-site-title a {
  color: var(--wt-heading-color, #0d1b2a) !important;
  text-decoration: none !important;
}

.mobile-drawer-close {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  color: #0f172a !important;
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  font-size: 20px !important;
  line-height: 1 !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.2s ease !important;
}

.mobile-drawer-close:hover {
  background: #ff4757 !important;
  border-color: #ff4757 !important;
  color: #ffffff !important;
  transform: rotate(90deg) !important;
}

/* Drawer Body Navigation */
.mobile-drawer-body {
  flex: 1 1 auto !important;
  overflow-y: auto !important;
  padding: 16px 14px !important;
  -webkit-overflow-scrolling: touch !important;
}

/* ── 3-Pill Segmented Navigation Tab Bar ── */
.mobile-nav-tabs-bar {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  background: rgba(15, 23, 42, 0.06) !important;
  padding: 4px !important;
  border-radius: 12px !important;
  margin-bottom: 16px !important;
}

.mobile-tab-btn {
  flex: 1 1 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  padding: 8px 6px !important;
  background: transparent !important;
  border: none !important;
  border-radius: 9px !important;
  font-family: var(--wt-heading-font-family, 'Outfit', sans-serif) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #64748b !important;
  cursor: pointer !important;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1) !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  outline: none !important;
}

.mobile-tab-btn i {
  font-size: 12.5px !important;
  transition: transform 0.2s ease !important;
}

.mobile-tab-btn:hover {
  color: #0f172a !important;
  background: rgba(255, 255, 255, 0.5) !important;
}

.mobile-tab-btn.is-active {
  background: #ffffff !important;
  color: var(--wt-primary-color, #ff6b00) !important;
  font-weight: 800 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04) !important;
}

.mobile-tab-btn.is-active i {
  color: var(--wt-primary-color, #ff6b00) !important;
  transform: scale(1.1) !important;
}

/* ── Tab Panes Container & Animations ── */
.mobile-nav-panes-wrap {
  width: 100% !important;
  position: relative !important;
}

.mobile-nav-pane {
  display: none;
  animation: mobPaneFade 0.25s ease forwards;
}

.mobile-nav-pane.is-active {
  display: block !important;
}

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

/* ── Category Chips in Services & Packages Tabs ── */
.mob-category-chips {
  display: flex !important;
  gap: 6px !important;
  overflow-x: auto !important;
  padding-bottom: 10px !important;
  margin-bottom: 12px !important;
  scrollbar-width: none !important;
  -webkit-overflow-scrolling: touch !important;
}

.mob-category-chips::-webkit-scrollbar {
  display: none !important;
}

.mob-cat-chip {
  flex-shrink: 0 !important;
  display: inline-block !important;
  padding: 5px 12px !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 20px !important;
  font-family: var(--wt-heading-font-family, 'Outfit', sans-serif) !important;
  font-size: 11.5px !important;
  font-weight: 700 !important;
  color: #475569 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.mob-cat-chip:hover,
.mob-cat-chip.is-active {
  background: #0f172a !important;
  color: #ffffff !important;
  border-color: #0f172a !important;
}

/* ── Drawer Cards List (Services & Packages) ── */
.mob-drawer-cards-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin-bottom: 16px !important;
}

.mob-drawer-card {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  border-radius: 12px !important;
  padding: 11px 14px !important;
  text-decoration: none !important;
  color: #0f172a !important;
  transition: all 0.22s ease !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03) !important;
}

.mob-drawer-card:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(255, 107, 0, 0.3) !important;
  box-shadow: 0 6px 16px rgba(255, 107, 0, 0.1) !important;
}

.mob-card-icon-wrap {
  width: 38px !important;
  height: 38px !important;
  border-radius: 10px !important;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%) !important;
  color: var(--wt-primary-color, #ff6b00) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 16px !important;
  flex-shrink: 0 !important;
}

.mob-card-details {
  flex: 1 1 auto !important;
  min-width: 0 !important;
}

.mob-card-title {
  display: block !important;
  font-family: var(--wt-heading-font-family, 'Outfit', sans-serif) !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  line-height: 1.3 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.mob-card-meta {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 5px !important;
  margin-top: 4px !important;
}

.mob-card-pill {
  display: inline-flex !important;
  align-items: center !important;
  padding: 2px 7px !important;
  border-radius: 6px !important;
  font-size: 10.5px !important;
  font-weight: 700 !important;
  font-family: var(--wt-heading-font-family, 'Outfit', sans-serif) !important;
  line-height: 1.2 !important;
}

.mob-pill-cat {
  background: #f1f5f9 !important;
  color: #475569 !important;
}

.mob-pill-price {
  background: #eff6ff !important;
  color: #2563eb !important;
}

.mob-pill-ribbon {
  background: #fef2f2 !important;
  color: #dc2626 !important;
}

.mob-pill-turnaround {
  background: #ecfdf5 !important;
  color: #059669 !important;
}

.mob-pkg-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 8px !important;
}

.mob-pkg-price {
  font-family: var(--wt-heading-font-family, 'Outfit', sans-serif) !important;
  font-size: 12.5px !important;
  font-weight: 800 !important;
  color: var(--wt-primary-color, #ff6b00) !important;
  white-space: nowrap !important;
}

.mob-card-arrow {
  color: #cbd5e1 !important;
  font-size: 12px !important;
  flex-shrink: 0 !important;
  transition: transform 0.2s ease, color 0.2s ease !important;
}

.mob-drawer-card:hover .mob-card-arrow {
  color: var(--wt-primary-color, #ff6b00) !important;
  transform: translateX(3px) !important;
}

/* ── Tab Footer View All Action ── */
.mob-tab-footer-action {
  margin-top: 6px !important;
}

.mob-tab-view-all-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
  padding: 10px 16px !important;
  background: #ffffff !important;
  border: 1.5px dashed rgba(255, 107, 0, 0.4) !important;
  border-radius: 10px !important;
  font-family: var(--wt-heading-font-family, 'Outfit', sans-serif) !important;
  font-size: 12.5px !important;
  font-weight: 800 !important;
  color: var(--wt-primary-color, #ff6b00) !important;
  text-decoration: none !important;
  transition: all 0.22s ease !important;
  box-sizing: border-box !important;
}

.mob-tab-view-all-btn:hover {
  background: var(--wt-primary-color, #ff6b00) !important;
  color: #ffffff !important;
  border-color: var(--wt-primary-color, #ff6b00) !important;
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.25) !important;
}

.mobile-menu-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.mobile-menu-list li {
  margin-bottom: 4px !important;
}

.mobile-menu-list li a {
  position: relative !important;
  display: block !important;
  padding: 11px 16px 11px 20px !important;
  color: #334155 !important;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border-radius: 10px !important;
  transition: all 0.22s ease !important;
  border: 1px solid transparent !important;
  border-left: 4.5px solid transparent !important;
  overflow: hidden !important;
}

/* Mobile Nav Menu Item Hover State (Clean hover without active accent border bar) */
.mobile-menu-list li a:hover {
  background: rgba(255, 255, 255, 0.75) !important;
  color: var(--wt-heading-color, #0d1b2a) !important;
  border-color: transparent !important;
  border-left-color: transparent !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

/* Active Mobile Nav Menu Item - Exclusive Accent Left Border & Outline */
.mobile-menu-list li.current-menu-item a,
.mobile-menu-list li.current_page_item a,
.mobile-menu-list li.current-menu-ancestor a,
.mobile-menu-list li.current-menu-parent a,
.mobile-menu-list li.current_page_ancestor a,
.mobile-menu-list li.current_page_parent a,
.mobile-menu-list li.active a,
.mobile-menu-list li a.active,
.mobile-menu-list li a.current-menu-item,
.mobile-menu-list li a.current_page_item,
.mobile-menu-list li a.current,
.mobile-menu-list li a[aria-current="page"] {
  background: #ffffff !important;
  color: var(--wt-heading-color, #0d1b2a) !important;
  border: 1px solid rgba(255, 107, 0, 0.22) !important;
  border-left: 5px solid var(--wt-primary-color, #ff6b00) !important;
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  padding-left: 20px !important;
  font-weight: 700 !important;
}

/* Pseudo-element Accent Bar guaranteeing 100% visible primary color vertical indicator on rounded card left edge */
.mobile-menu-list li.current-menu-item a::before,
.mobile-menu-list li.current_page_item a::before,
.mobile-menu-list li.current-menu-ancestor a::before,
.mobile-menu-list li.current-menu-parent a::before,
.mobile-menu-list li.current_page_ancestor a::before,
.mobile-menu-list li.current_page_parent a::before,
.mobile-menu-list li.active a::before,
.mobile-menu-list li a.active::before,
.mobile-menu-list li a.current-menu-item::before,
.mobile-menu-list li a.current_page_item::before,
.mobile-menu-list li a.current::before,
.mobile-menu-list li a[aria-current="page"]::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 5px !important;
  background: var(--wt-primary-color, #ff6b00) !important;
  border-radius: 10px 0 0 10px !important;
  z-index: 10 !important;
}

/* Drawer Footer */
.mobile-drawer-footer {
  padding: 14px 16px 18px !important;
  border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
  background: rgba(255, 255, 255, 0.6) !important;
}

.mobile-drawer-social {
  margin-top: 0 !important;
  margin-bottom: 12px !important;
  justify-content: center !important;
  gap: 8px !important;
}

.mobile-drawer-social .social-icon-link {
  width: 36px !important;
  height: 36px !important;
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  color: #475569 !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04) !important;
}

.mobile-drawer-actions {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  width: 100% !important;
}

.drawer-wa-btn,
.drawer-call-btn {
  flex: 1 1 0px !important;
  width: 50% !important;
  min-width: 0 !important;
  padding: 6px 8px !important;
  font-size: 11.5px !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  white-space: nowrap !important;
  box-sizing: border-box !important;
}

.drawer-wa-btn svg,
.drawer-call-btn svg {
  width: 14px !important;
  height: 14px !important;
  flex-shrink: 0 !important;
}

.drawer-wa-btn {
  background: #25D366 !important;
  color: #ffffff !important;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.25) !important;
  transition: all 0.2s ease !important;
}

.drawer-wa-btn:hover {
  background: #20ba5a !important;
  transform: translateY(-1px) !important;
  color: #ffffff !important;
}

.drawer-call-btn {
  background: #0f172a !important;
  border: 1px solid #0f172a !important;
  color: #ffffff !important;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.15) !important;
  transition: all 0.2s ease !important;
}

.drawer-call-btn:hover {
  background: #1e293b !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
}

@media (max-width: 991px) {
  .menu-toggle {
    display: flex !important;
  }

  .header-center {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .header-inner {
    gap: 10px !important;
  }

  .site-branding .site-title {
    font-size: 19px !important;
    line-height: 1.2 !important;
  }

  .site-branding img,
  .site-branding .custom-logo {
    max-height: clamp(32px, 8vw, 40px) !important;
    width: auto !important;
  }

  .header-right {
    gap: 8px !important;
  }

  .header-cta-btn {
    font-size: 12.5px !important;
    padding: 7px 15px !important;
    white-space: nowrap !important;
  }

  .menu-toggle {
    width: 38px !important;
    height: 38px !important;
  }
}

@media (max-width: 400px) {
  .site-branding .site-title {
    font-size: 17px !important;
  }

  .header-cta-btn {
    font-size: 11.5px !important;
    padding: 6px 11px !important;
  }

  .menu-toggle {
    width: 36px !important;
    height: 36px !important;
  }
}


/* ==========================================================================
   6. Site Footer - Modern Creative Tech-Animated 4-Column Layout
   ========================================================================== */
.site-footer {
  background: linear-gradient(180deg, var(--wt-footer-bg-start, #060d1f) 0%, var(--wt-footer-bg-end, #0b132b) 100%) !important;
  color: var(--wt-footer-text, #94a3b8);
  position: relative;
  overflow: hidden;
  margin-top: auto;
  flex-shrink: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: var(--wt-footer-pt, 70px);
  padding-bottom: var(--wt-footer-pb, 0px);
}

/* Glowing Top Accent Edge */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  max-width: 850px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, #ff6b00 50%, transparent 100%);
  box-shadow: 0 0 18px rgba(255, 107, 0, 0.6), 0 0 4px rgba(255, 107, 0, 0.8);
  z-index: 4;
}

.footer-content-wrap {
  position: relative;
  z-index: 3;
}

/* ── Low-Opacity Futuristic Tech Background Animation Layer ─────────── */
.wt-footer-tech-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
  transition: opacity 0.4s ease;
}

/* Cyber Grid */
.wt-tech-cyber-grid {
  position: absolute;
  inset: -50px;
  background-image: 
    linear-gradient(to right, rgba(255, 107, 0, 0.32) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(56, 189, 248, 0.28) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(ellipse at 50% 35%, #000 60%, transparent 95%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 35%, #000 60%, transparent 95%);
  animation: wtTechGridDrift 45s linear infinite;
}

@keyframes wtTechGridDrift {
  0% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-20px) translateX(20px); }
  100% { transform: translateY(0) translateX(0); }
}

/* Floating Cyber Nodes */
.wt-tech-nodes {
  position: absolute;
  inset: 0;
}

.wt-node {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 10px #ff6b00, 0 0 22px #ff8c40, 0 0 35px rgba(255, 107, 0, 0.9);
  animation: wtNodePulse 3.5s ease-in-out infinite alternate;
}

.wt-node-1 { top: 18%; left: 12%; animation-delay: 0s; }
.wt-node-2 { top: 60%; left: 24%; animation-delay: 1.2s; box-shadow: 0 0 10px #38bdf8, 0 0 22px #0284c7, 0 0 35px rgba(56, 189, 248, 0.9); }
.wt-node-3 { top: 25%; left: 45%; animation-delay: 0.7s; }
.wt-node-4 { top: 70%; left: 62%; animation-delay: 2.1s; box-shadow: 0 0 10px #38bdf8, 0 0 22px #0284c7, 0 0 35px rgba(56, 189, 248, 0.9); }
.wt-node-5 { top: 20%; left: 78%; animation-delay: 1.5s; }
.wt-node-6 { top: 75%; left: 88%; animation-delay: 2.8s; }

@keyframes wtNodePulse {
  0% { transform: scale(0.8) translateY(0); opacity: 0.4; }
  50% { transform: scale(1.5) translateY(-12px); opacity: 1; }
  100% { transform: scale(0.9) translateY(-5px); opacity: 0.5; }
}

/* Ambient Glowing Tech Orbs */
.wt-tech-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(75px);
  pointer-events: none;
}

.wt-orb-1 {
  width: 500px;
  height: 500px;
  top: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.45) 0%, transparent 70%);
}

.wt-orb-2 {
  width: 550px;
  height: 550px;
  bottom: -160px;
  right: -80px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.40) 0%, transparent 70%);
}

/* Digital Circuit Style Modifier */
.wt-tech-style-digital_circuit .wt-tech-cyber-grid {
  background-image: 
    radial-gradient(rgba(255, 255, 255, 0.35) 2px, transparent 2px),
    linear-gradient(to right, rgba(255, 107, 0, 0.25) 1px, transparent 1px);
  background-size: 32px 32px, 64px 64px;
}

/* Ambient Orbs Style Modifier */
.wt-tech-style-ambient_orbs .wt-tech-cyber-grid {
  display: none;
}
.wt-tech-style-ambient_orbs .wt-tech-glow-orb {
  filter: blur(55px);
  opacity: 0.9;
}

/* ── 4-Column Footer Grid ───────────────────────────────────────────── */
.footer-grid-4 {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr 1.2fr;
  gap: 44px;
  padding-top: 10px;
  padding-bottom: 50px;
}

.footer-col-title {
  color: #ffffff;
  font-family: var(--wt-heading-font-family, 'Outfit', sans-serif);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
  position: relative;
  display: inline-block;
}

.footer-col-title::after {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  background: linear-gradient(90deg, #ff6b00, #ff944d);
  border-radius: 9999px;
  margin-top: 8px;
}

/* Column 1: Branding & Status Pill */
.footer-logo,
.footer-branding img,
.footer-branding .custom-logo {
  max-height: var(--wt-footer-logo-height, 45px);
  max-width: var(--wt-footer-logo-width, 240px);
  width: auto;
  height: auto;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.footer-site-title {
  color: #ffffff;
  font-family: var(--wt-heading-font-family, 'Outfit', sans-serif);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

/* Agency Status Pill Badge */
.footer-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.status-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: wtStatusPulse 2s infinite;
  flex-shrink: 0;
}

@keyframes wtStatusPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 7px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.status-badge-txt {
  font-size: 11.5px;
  font-weight: 600;
  color: #e2e8f0;
  letter-spacing: 0.01em;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--wt-footer-text, #94a3b8);
  margin-bottom: 0;
  max-width: 340px;
}

/* ── Global Reusable Social Media Icons Component ───────────────────── */
.footer-social-wrap {
  margin-top: 22px;
}

.web-techiq-social-icons-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: 14px;
}

.social-icon-link:hover {
  transform: translateY(-3px) scale(1.05);
  color: #ffffff;
  border-color: #ff6b00;
  background: rgba(255, 107, 0, 0.15);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.35);
}

/* Brand Native Hover Colors */
.hover-style-brand .social-link-facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.45);
}
.hover-style-brand .social-link-twitter:hover {
  background: #000000;
  border-color: #333333;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}
.hover-style-brand .social-link-instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: #dc2743;
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.45);
}
.hover-style-brand .social-link-youtube:hover {
  background: #FF0000;
  border-color: #FF0000;
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.45);
}
.hover-style-brand .social-link-linkedin:hover {
  background: #0A66C2;
  border-color: #0A66C2;
  box-shadow: 0 6px 20px rgba(10, 102, 194, 0.45);
}
.hover-style-brand .social-link-telegram:hover {
  background: #0088cc;
  border-color: #0088cc;
  box-shadow: 0 6px 20px rgba(0, 136, 204, 0.45);
}

/* Navigation Lists */
.footer-menu-list,
.footer-col-2 ul,
.footer-col-3 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu-list li,
.footer-col-2 ul li,
.footer-col-3 ul li {
  margin-bottom: 11px;
}

.footer-menu-list li:last-child,
.footer-col-2 ul li:last-child,
.footer-col-3 ul li:last-child {
  margin-bottom: 0;
}

.footer-menu-list a,
.footer-col-2 ul a,
.footer-col-3 ul a {
  color: var(--wt-footer-text, #94a3b8);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}

.footer-menu-list a::before,
.footer-col-2 ul a::before,
.footer-col-3 ul a::before {
  content: '›';
  font-size: 16px;
  color: #ff6b00;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.footer-menu-list a:hover,
.footer-col-2 ul a:hover,
.footer-col-3 ul a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-menu-list a:hover::before,
.footer-col-2 ul a:hover::before,
.footer-col-3 ul a:hover::before {
  color: #ff944d;
  transform: translateX(2px);
}

/* ── Contact Channel Items (Column 4) ───────────────────────────────── */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.22);
  color: #ff6b00;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13.5px;
  transition: all 0.25s ease;
}

.footer-contact-item:hover .contact-icon {
  background: #ff6b00;
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.4);
}

.contact-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  line-height: 1;
}

.contact-link,
.contact-address-text {
  font-size: 13.5px;
  font-weight: 500;
  color: #e2e8f0;
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: #ff6b00;
}

/* Custom Image in Column 4 */
.footer-col-image-wrap {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* ── Footer Bottom Bar ──────────────────────────────────────────────── */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 13.5px;
}

.copyright-text {
  margin: 0;
  color: #64748b;
  font-weight: 500;
}

/* Developer Credit Badge Style */
.web-techiq-footer-devbadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  padding: 6px 16px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.web-techiq-footer-devbadge:hover {
  background: rgba(255, 107, 0, 0.12);
  border-color: #ff6b00;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.3);
}

.web-techiq-footer-devbadge-label {
  font-family: var(--wt-heading-font-family, 'Outfit', sans-serif);
  font-size: 11.5px;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.02em;
  line-height: 1;
}

.web-techiq-footer-devbadge-brand {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--wt-heading-font-family, 'Outfit', sans-serif);
  font-size: 13px;
  font-weight: 800;
  color: #ff6b00;
  background: linear-gradient(135deg, #ff6b00 0%, #ffb800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.web-techiq-footer-devbadge-brand i {
  font-size: 11px;
  color: #ff6b00;
  -webkit-text-fill-color: initial;
  animation: wtCodePulse 2.5s ease-in-out infinite;
}

@keyframes wtCodePulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* ── Responsive Breakpoints ─────────────────────────────────────────── */
@media (max-width: 991px) {
  .footer-grid-4 {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .footer-grid-4 {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 36px;
  }

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

/* ==========================================================================
   8. Blog Grid, Post Cards, & Single Post Styling
   ========================================================================== */
.blog-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.post-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.post-card-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.post-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #718096;
  margin-bottom: 12px;
}

.post-category a {
  background: rgba(255, 107, 0, 0.1);
  color: var(--wt-primary-color, #ff6b00);
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.post-card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
}

.post-card-title a {
  color: var(--wt-heading-color, #0d1b2a);
}

.post-card-title a:hover {
  color: var(--wt-primary-color, #ff6b00);
}

.post-card-excerpt {
  font-size: 14px;
  color: var(--wt-body-color, #4a5568);
  margin-bottom: 20px;
  flex-grow: 1;
}

.post-card-footer {
  margin-top: auto;
}

.post-read-more {
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 30px;
}

/* Pagination */
.pagination-wrap {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.pagination-wrap .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--wt-heading-color, #0d1b2a);
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 600;
  font-size: 14px;
}

.pagination-wrap .page-numbers.current {
  background: var(--wt-primary-color, #ff6b00);
  color: #ffffff;
  border-color: var(--wt-primary-color, #ff6b00);
}

/* Single Post styles are comprehensively handled in blog.css */

@media (max-width: 991px) {
  .blog-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid-3 {
    grid-template-columns: 1fr;
  }
}
.page-header-banner {
  text-align: center;
  padding: 60px 20px;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.page-content-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

/* ==========================================================================
   WORDPRESS NAV MENU — DROPDOWN & SUB-MENU SYSTEM
   Scoped to theme containers — zero plugin bleed
   ========================================================================== */

/* ── Desktop: Parent items with children get a chevron ── */
.nav-pill-container li.menu-item-has-children > a::after {
  content: ' ▾';
  font-size: 10px;
  opacity: 0.55;
  margin-left: 2px;
  vertical-align: middle;
}

/* ── Desktop: Position context for the dropdown ── */
.nav-pill-container li.menu-item-has-children {
  position: relative;
}

/* ── Desktop: Hidden by default, revealed on hover/focus ── */
.nav-pill-container ul.sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
  padding: 8px;
  list-style: none;
  margin: 0;
  z-index: 9999;
  flex-direction: column;
  gap: 2px;
  /* fade-in animation */
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-pill-container li.menu-item-has-children:hover > ul.sub-menu,
.nav-pill-container li.menu-item-has-children:focus-within > ul.sub-menu {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* ── Desktop sub-menu item reset ── */
.nav-pill-container ul.sub-menu li {
  margin: 0;
  padding: 0;
  width: 100%;
}

/* ── Desktop sub-menu anchor ── */
.nav-pill-container ul.sub-menu li a {
  display: block;
  width: 100%;
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease;
}

.nav-pill-container ul.sub-menu li a:hover,
.nav-pill-container ul.sub-menu li.current-menu-item > a {
  background: #f8fafc;
  color: var(--wt-primary-color, #ff6b00);
}

/* ── Desktop sub-sub-menu (3rd level) ── */
.nav-pill-container ul.sub-menu li.menu-item-has-children > a::after {
  content: ' ›';
  float: right;
  opacity: 0.5;
}

.nav-pill-container ul.sub-menu ul.sub-menu {
  top: 0;
  left: calc(100% + 6px);
  transform: translateY(0);
}

.nav-pill-container ul.sub-menu li.menu-item-has-children:hover > ul.sub-menu,
.nav-pill-container ul.sub-menu li.menu-item-has-children:focus-within > ul.sub-menu {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ==========================================================================
   FULL-WIDTH DESKTOP MEGA MENU SYSTEM (Services & Packages)
   ========================================================================== */

/* Active link glow on nav pill container */
.nav-pill-container li.menu-item-has-mega-menu.is-mega-active > a,
.nav-pill-container li.menu-item-has-mega-menu:hover > a {
  background: #ffffff !important;
  color: var(--wt-heading-color, #0d1b2a) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
}

/* Header Masthead must be relative context for 100% full-width attachment */
#masthead.site-header {
  position: relative !important;
}

/* Full-Width Overlay Container attached directly beneath #masthead with ZERO gap */
.wt-desktop-mega-menu-overlay {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 99999 !important;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.22s ease !important;
}

.wt-desktop-mega-menu-overlay.is-open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Mega Menu Panels */
.wt-desktop-mega-panel {
  display: none;
  width: 100% !important;
  background: #ffffff !important;
  border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
  border-bottom: 3px solid var(--wt-primary-color, #ff6b00) !important;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.14), 0 10px 25px rgba(0, 0, 0, 0.05) !important;
  padding: 28px 0 26px 0 !important;
  box-sizing: border-box !important;
}

.wt-desktop-mega-panel.is-open {
  display: block !important;
  animation: wtMegaSlideDown 0.22s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}

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

.wt-mega-panel-container {
  width: 100% !important;
  max-width: 1240px !important;
  margin: 0 auto !important;
  padding-left: 28px !important;
  padding-right: 28px !important;
  box-sizing: border-box !important;
}

.wt-mega-panel-layout {
  display: grid !important;
  grid-template-columns: 280px 1fr !important;
  gap: 28px !important;
  align-items: stretch !important;
}

/* ── Showcase Left Sidebar ── */
.wt-mega-showcase-sidebar {
  border-radius: 16px !important;
  padding: 26px 22px !important;
  color: #ffffff !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
  position: relative !important;
  overflow: hidden !important;
}

.wt-showcase-services {
  background: linear-gradient(145deg, #090d16 0%, #0f172a 60%, #1e293b 100%) !important;
}

.wt-showcase-packages {
  background: linear-gradient(145deg, #0f172a 0%, #1c2638 60%, #2a3850 100%) !important;
}

.wt-showcase-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: rgba(255, 107, 0, 0.2) !important;
  border: 1px solid rgba(255, 107, 0, 0.45) !important;
  color: #ff9800 !important;
  padding: 4px 11px !important;
  border-radius: 20px !important;
  font-family: var(--wt-heading-font-family, 'Outfit', sans-serif) !important;
  font-size: 10.5px !important;
  font-weight: 800 !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 14px !important;
  align-self: flex-start !important;
}

.wt-badge-amber {
  background: rgba(245, 158, 11, 0.2) !important;
  border-color: rgba(245, 158, 11, 0.45) !important;
  color: #fbbf24 !important;
}

.wt-showcase-title {
  margin: 0 0 10px 0 !important;
  font-family: var(--wt-heading-font-family, 'Outfit', sans-serif) !important;
  font-size: 17.5px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  line-height: 1.3 !important;
}

.wt-showcase-desc {
  margin: 0 0 16px 0 !important;
  font-family: var(--wt-body-font-family, 'Inter', sans-serif) !important;
  font-size: 12px !important;
  color: #94a3b8 !important;
  line-height: 1.5 !important;
}

.wt-showcase-categories {
  margin-bottom: 18px !important;
}

.wt-showcase-cat-label {
  display: block !important;
  font-family: var(--wt-heading-font-family, 'Outfit', sans-serif) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #cbd5e1 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  margin-bottom: 8px !important;
}

.wt-showcase-cat-chips {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
}

.wt-showcase-chip {
  display: inline-block !important;
  padding: 4px 11px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 12px !important;
  font-family: var(--wt-heading-font-family, 'Outfit', sans-serif) !important;
  font-size: 11.5px !important;
  font-weight: 700 !important;
  color: #f1f5f9 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.wt-showcase-chip:hover {
  background: var(--wt-primary-color, #ff6b00) !important;
  border-color: var(--wt-primary-color, #ff6b00) !important;
  color: #ffffff !important;
}

.wt-showcase-perks {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 18px 0 !important;
}

.wt-showcase-perks li {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-family: var(--wt-body-font-family, 'Inter', sans-serif) !important;
  font-size: 12px !important;
  color: #e2e8f0 !important;
  margin-bottom: 8px !important;
}

.wt-showcase-perks li i {
  color: #10b981 !important;
  font-size: 12px !important;
}

.wt-showcase-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 10px 18px !important;
  background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%) !important;
  color: #ffffff !important;
  border-radius: 10px !important;
  font-family: var(--wt-heading-font-family, 'Outfit', sans-serif) !important;
  font-size: 12.5px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.35) !important;
  transition: all 0.22s ease !important;
}

.wt-showcase-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(255, 107, 0, 0.45) !important;
}

.wt-btn-amber {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35) !important;
}

/* ── Right Wide Content Grid ── */
.wt-mega-grid-wrapper {
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  gap: 16px !important;
}

.wt-mega-wide-services-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 14px 18px !important;
}

.wt-mega-wide-card {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 14px 18px !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 14px !important;
  text-decoration: none !important;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-sizing: border-box !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02) !important;
}

.wt-mega-wide-card:hover {
  background: #ffffff !important;
  border-color: rgba(255, 107, 0, 0.45) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.12) !important;
}

.wt-mega-wide-icon {
  width: 44px !important;
  height: 44px !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%) !important;
  color: var(--wt-primary-color, #ff6b00) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 18px !important;
  flex-shrink: 0 !important;
  transition: all 0.22s ease !important;
}

.wt-mega-wide-card:hover .wt-mega-wide-icon {
  background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%) !important;
  color: #ffffff !important;
  transform: scale(1.06) !important;
}

.wt-mega-wide-content {
  flex: 1 1 auto !important;
  min-width: 0 !important;
}

.wt-mega-wide-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 8px !important;
  margin-bottom: 2px !important;
}

.wt-mega-wide-title {
  font-family: var(--wt-heading-font-family, 'Outfit', sans-serif) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  line-height: 1.3 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.wt-mega-wide-price {
  font-family: var(--wt-heading-font-family, 'Outfit', sans-serif) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  color: var(--wt-primary-color, #ff6b00) !important;
  background: #fff7ed !important;
  padding: 2px 7px !important;
  border-radius: 6px !important;
  white-space: nowrap !important;
}

.wt-mega-wide-desc {
  margin: 0 !important;
  font-family: var(--wt-body-font-family, 'Inter', sans-serif) !important;
  font-size: 11.5px !important;
  color: #64748b !important;
  line-height: 1.4 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.wt-mega-wide-arrow {
  font-size: 12px !important;
  color: #cbd5e1 !important;
  flex-shrink: 0 !important;
  transition: transform 0.2s ease, color 0.2s ease !important;
}

.wt-mega-wide-card:hover .wt-mega-wide-arrow {
  color: var(--wt-primary-color, #ff6b00) !important;
  transform: translateX(3px) !important;
}

/* ── Right Wide Packages Grid (3 Columns) ── */
.wt-mega-wide-packages-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
}

.wt-mega-wide-pkg-card {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 14px !important;
  padding: 18px 16px !important;
  position: relative !important;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-sizing: border-box !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02) !important;
}

.wt-mega-wide-pkg-card:hover {
  background: #ffffff !important;
  border-color: rgba(255, 107, 0, 0.45) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 25px rgba(255, 107, 0, 0.14) !important;
}

.wt-mega-wide-pkg-card.is-featured {
  border-color: #ff6b00 !important;
  background: #ffffff !important;
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.08) !important;
}

.wt-mega-pkg-header-box {
  margin-bottom: 6px !important;
}

.wt-mega-pkg-title {
  display: block !important;
  font-family: var(--wt-heading-font-family, 'Outfit', sans-serif) !important;
  font-size: 14.5px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin-bottom: 4px !important;
}

.wt-mega-pkg-price-row {
  display: flex !important;
  align-items: baseline !important;
  gap: 3px !important;
}

.wt-mega-pkg-cost {
  font-family: var(--wt-heading-font-family, 'Outfit', sans-serif) !important;
  font-size: 21px !important;
  font-weight: 800 !important;
  color: var(--wt-primary-color, #ff6b00) !important;
}

.wt-mega-pkg-term {
  font-family: var(--wt-body-font-family, 'Inter', sans-serif) !important;
  font-size: 11px !important;
  color: #64748b !important;
}

.wt-mega-pkg-summary {
  margin: 0 0 10px 0 !important;
  font-family: var(--wt-body-font-family, 'Inter', sans-serif) !important;
  font-size: 11.5px !important;
  color: #64748b !important;
  line-height: 1.4 !important;
}

.wt-mega-pkg-sla {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  padding: 4px 8px !important;
  border-radius: 6px !important;
  background: #ecfdf5 !important;
  color: #059669 !important;
  font-family: var(--wt-heading-font-family, 'Outfit', sans-serif) !important;
  font-size: 10.5px !important;
  font-weight: 700 !important;
  margin-bottom: 12px !important;
  align-self: flex-start !important;
}

.wt-mega-pkg-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  width: 100% !important;
  padding: 8px 12px !important;
  background: #f1f5f9 !important;
  border-radius: 8px !important;
  font-family: var(--wt-heading-font-family, 'Outfit', sans-serif) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  box-sizing: border-box !important;
}

.wt-mega-wide-pkg-card:hover .wt-mega-pkg-btn {
  background: var(--wt-primary-color, #ff6b00) !important;
  color: #ffffff !important;
}

/* ── Bottom Wide Action Strip ── */
.wt-mega-panel-bottom-strip {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  padding: 11px 18px !important;
  gap: 14px !important;
}

.wt-mega-strip-left {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  min-width: 0 !important;
}

.wt-mega-strip-badge {
  font-family: var(--wt-heading-font-family, 'Outfit', sans-serif) !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  background: #fff7ed !important;
  color: var(--wt-primary-color, #ff6b00) !important;
  padding: 2px 7px !important;
  border-radius: 4px !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

.wt-badge-green {
  background: #ecfdf5 !important;
  color: #059669 !important;
}

.wt-mega-strip-text {
  font-family: var(--wt-body-font-family, 'Inter', sans-serif) !important;
  font-size: 12px !important;
  color: #475569 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.wt-mega-strip-cta {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 6px 14px !important;
  background: #ffffff !important;
  border: 1px solid rgba(255, 107, 0, 0.3) !important;
  border-radius: 8px !important;
  font-family: var(--wt-heading-font-family, 'Outfit', sans-serif) !important;
  font-size: 11.5px !important;
  font-weight: 800 !important;
  color: var(--wt-primary-color, #ff6b00) !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  transition: all 0.2s ease !important;
}

.wt-mega-strip-cta:hover {
  background: var(--wt-primary-color, #ff6b00) !important;
  color: #ffffff !important;
  border-color: var(--wt-primary-color, #ff6b00) !important;
  transform: translateX(2px) !important;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .wt-mega-panel-container {
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .wt-mega-panel-layout {
    grid-template-columns: 250px 1fr !important;
    gap: 20px !important;
  }
  .wt-mega-wide-services-grid {
    gap: 12px 14px !important;
  }
  .wt-mega-wide-card {
    padding: 12px 14px !important;
  }
}

/* ── Target Service / Package Card Highlight & Focus Pulse ── */
.srv-card-item,
.pkg-card-item {
  scroll-margin-top: 110px !important;
}

.wt-target-highlight {
  animation: wtCardTargetPulse 2.8s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}

@keyframes wtCardTargetPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7), 0 10px 30px rgba(255, 107, 0, 0.2);
    border-color: #ff6b00 !important;
    transform: scale(1.02);
  }
  30% {
    box-shadow: 0 0 0 8px rgba(255, 107, 0, 0.25), 0 15px 35px rgba(255, 107, 0, 0.3);
    border-color: #ff6b00 !important;
    transform: scale(1.02);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(255, 107, 0, 0), 0 10px 25px rgba(255, 107, 0, 0.15);
    border-color: #ff6b00 !important;
    transform: scale(1.01);
  }
  100% {
    box-shadow: inherit;
    border-color: inherit;
    transform: scale(1);
  }
}

/* ── Mobile Drawer: Sub-menu ── */
.mobile-menu-list li.menu-item-has-children > a::after {
  content: ' ▾';
  font-size: 10px;
  opacity: 0.5;
  float: right;
  margin-top: 2px;
}

.mobile-menu-list ul.sub-menu {
  list-style: none !important;
  margin: 4px 0 4px 16px !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  border-left: 3px solid rgba(255, 107, 0, 0.25) !important;
  padding-left: 0 !important;
}

.mobile-menu-list ul.sub-menu li {
  margin-bottom: 0 !important;
}

.mobile-menu-list ul.sub-menu li a {
  font-size: 13px !important;
  padding: 8px 14px 8px 18px !important;
  color: #64748b !important;
  font-weight: 500 !important;
  border-left: none !important;
}

.mobile-menu-list ul.sub-menu li a:hover {
  color: var(--wt-primary-color, #ff6b00) !important;
  background: rgba(255, 107, 0, 0.05) !important;
}

/* ── Footer nav menu links ── */
.footer-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu-list li {
  margin-bottom: 10px;
}

.footer-menu-list li a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-menu-list li a::before {
  content: '›';
  font-size: 16px;
  color: var(--wt-primary-color, #ff6b00);
  line-height: 1;
}

.footer-menu-list li a:hover {
  color: #ffffff;
}

/* Footer menu sub-items (if any) */
.footer-menu-list ul.sub-menu {
  list-style: none;
  margin: 6px 0 6px 16px;
  padding: 0;
  border-left: 2px solid rgba(255, 107, 0, 0.25);
}

.footer-menu-list ul.sub-menu li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  padding-left: 10px;
}

.footer-menu-list ul.sub-menu li a:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* ── WordPress wp_nav_menu output compatibility ──
   wp_nav_menu outputs <ul class="menu"> with no class="mobile-menu-list"
   when used in mobile drawer. Apply same styles to .menu class inside
   mobile-navigation and footer nav areas.
── */
.mobile-navigation ul.menu {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.mobile-navigation ul.menu li {
  margin-bottom: 4px !important;
}

.mobile-navigation ul.menu li a {
  position: relative !important;
  display: block !important;
  padding: 11px 16px 11px 20px !important;
  color: #334155 !important;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border-radius: 10px !important;
  transition: all 0.22s ease !important;
  border: 1px solid transparent !important;
  border-left: 4.5px solid transparent !important;
}

.mobile-navigation ul.menu li a:hover,
.mobile-navigation ul.menu li.current-menu-item > a,
.mobile-navigation ul.menu li.current_page_item > a {
  background: rgba(255, 255, 255, 0.75) !important;
  color: var(--wt-heading-color, #0d1b2a) !important;
  border-left-color: var(--wt-primary-color, #ff6b00) !important;
}

.mobile-navigation ul.menu ul.sub-menu {
  list-style: none !important;
  margin: 4px 0 4px 16px !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  border-left: 3px solid rgba(255, 107, 0, 0.25) !important;
}

.mobile-navigation ul.menu ul.sub-menu li a {
  font-size: 13px !important;
  padding: 8px 14px 8px 18px !important;
  color: #64748b !important;
  font-weight: 500 !important;
  border-left: none !important;
}

/* Footer widget menus output by wp_nav_menu */
.footer-nav-col ul.menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.footer-nav-col ul.menu li a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-nav-col ul.menu li a::before {
  content: '›';
  font-size: 16px;
  color: var(--wt-primary-color, #ff6b00);
  line-height: 1;
}

.footer-nav-col ul.menu li a:hover {
  color: #ffffff;
}

/* ==========================================================================
   GLOBAL PACKAGE MODAL RESET (Guarantees modal is never unstyled in DOM)
   ========================================================================== */
.web-techiq-pkg-modal-backdrop {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 9999999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.web-techiq-pkg-modal-backdrop.is-open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}






