/* Web Services V2 | Viral Web SEM 
  Cyberpunk / Modern Ops Edition
  Last Updated: 2026-02-13
*/

:root {
  --ws2-bg: #071326;
  --ws2-surface: #0c1d38;
  --ws2-card: #11284a;
  --ws2-border: rgba(87, 169, 255, 0.25);
  --ws2-text: #e6f0ff;
  --ws2-muted: #9cb5d8;
  --ws2-accent: #2ea8ff;
  --ws2-accent-2: #6fd3ff;
  --ws2-cyan-a: #40c9ec;
  --ws2-cyan-b: #2f9fe8;
  --ws2-gold: #f0c14b;
  
  /* Cyberpunk Glass & Glow Additions */
  --neon-glow: rgba(46, 168, 255, 0.4);
  --glass-effect: blur(12px);
  --glass-bg: rgba(17, 40, 74, 0.6);
}

body.services-v2 {
  background: radial-gradient(1200px 600px at 50% -10%, rgba(46, 168, 255, 0.16), transparent 60%), var(--ws2-bg);
  color: var(--ws2-text);
  /* Subtle scanline texture for tech feel */
  background-image: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.05) 50%), 
                    linear-gradient(90deg, rgba(255, 0, 0, 0.01), rgba(0, 255, 0, 0.005), rgba(0, 0, 255, 0.01));
  background-size: 100% 4px, 3px 100%;
}

.ws2-main {
  padding-bottom: 96px;
}

.ws2-main .btn { 
  border-radius: 14px; 
  padding: 12px 18px; 
  font-weight: 700; 
  transition: all 0.2s ease;
}

.ws2-section {
  padding: 28px 0 24px;
}

.ws2-section-head {
  margin-bottom: 20px;
}

.ws2-section-head h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.15;
}

.ws2-section-head p {
  margin: 0;
  color: var(--ws2-muted);
  font-size: 17px;
}

/* Sticky Nav with Blur */
.ws2-jump-nav {
  position: sticky;
  top: 70px;
  z-index: 20;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ws2-border);
}

.ws2-jump-nav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 0 10px;
}

.ws2-jump-nav a {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(111, 211, 255, 0.32);
  background: rgba(12, 29, 56, 0.82);
  color: #d8ebff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s;
}

.ws2-jump-nav a:hover {
  border-color: var(--ws2-accent-2);
  box-shadow: 0 0 10px var(--neon-glow);
  color: #fff;
}

/* Glassmorphism Hero */
.ws2-hero {
  padding: 64px 0 40px;
}

.ws2-hero-card {
  border: 1px solid var(--ws2-border);
  border-radius: 22px;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 40px;
  box-shadow: 0 24px 48px rgba(2, 9, 20, 0.45), inset 0 0 20px rgba(46, 168, 255, 0.05);
}

.ws2-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(111, 211, 255, 0.45);
  color: var(--ws2-accent-2);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  background: rgba(46, 168, 255, 0.1);
}

.ws2-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4.8vw, 52px);
  line-height: 1.1;
}

.ws2-hero p {
  margin: 0;
  max-width: 760px;
  color: var(--ws2-muted);
  font-size: 18px;
}

.ws2-hero-cta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Glass Core Cards */
.ws2-grid {
  padding: 20px 0 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
}

.ws2-card {
  border: 1px solid rgba(120, 197, 255, 0.22);
  border-radius: 16px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-effect);
  -webkit-backdrop-filter: var(--glass-effect);
  padding: 24px;
  box-shadow: 0 12px 26px rgba(4, 12, 24, 0.34);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.ws2-card:hover {
  border-color: var(--ws2-accent-2);
  box-shadow: 0 0 20px var(--neon-glow);
  transform: translateY(-5px);
}

.ws2-card h3 {
  margin: 10px 0 10px;
  font-size: 24px;
}

.ws2-chip {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(46, 168, 255, 0.16);
  border: 1px solid rgba(111, 211, 255, 0.45);
  color: #a8dcff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ws2-card p {
  color: var(--ws2-muted);
  min-height: 48px;
  font-size: 15px;
  line-height: 1.55;
}

.ws2-list {
  margin: 0 0 18px;
  padding-left: 18px;
  color: #c8dcf8;
}

.ws2-list li {
  margin-bottom: 6px;
}

.ws2-meta {
  margin-top: 16px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.ws2-price {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #6ea8ff, #f0e5b9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ws2-price small {
  font-size: 14px;
  color: var(--ws2-muted);
  font-weight: 600;
}

/* Feature Modules */
.ws2-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.ws2-feature-card {
  border: 1px solid rgba(111, 211, 255, 0.24);
  border-radius: 16px;
  background: rgba(9, 22, 42, 0.85);
  backdrop-filter: blur(8px);
  padding: 20px;
  transition: 0.3s;
}

.ws2-feature-card:hover {
  background: rgba(17, 40, 74, 0.9);
  border-color: var(--ws2-accent);
}

/* Packages & Neon Featured */
.ws2-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.ws2-package {
  border: 1px solid rgba(120, 197, 255, 0.22);
  border-radius: 16px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-effect);
  padding: 20px;
  box-shadow: 0 12px 26px rgba(4, 12, 24, 0.34);
}

.ws2-package-featured {
  border: 1px solid var(--ws2-gold) !important;
  background: rgba(17, 40, 74, 0.8);
  box-shadow: 0 0 25px rgba(240, 193, 75, 0.2), inset 0 0 15px rgba(240, 193, 75, 0.05);
  position: relative;
  overflow: hidden;
  transform: scale(1.02);
}

.ws2-package-featured::before {
  content: "OPTIMAL TRACK";
  position: absolute;
  top: 12px;
  right: -32px;
  background: var(--ws2-gold);
  color: #071326;
  font-size: 10px;
  font-weight: 900;
  padding: 4px 35px;
  transform: rotate(45deg);
  box-shadow: 0 0 10px var(--ws2-gold);
}

.ws2-package-foot strong {
  font-size: 30px;
  background: linear-gradient(135deg, #6ea8ff, #f0e5b9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.ws2-card .btn.btn-primary,
.ws2-package .btn.btn-primary {
  border: none;
  background: linear-gradient(135deg, var(--ws2-cyan-a), var(--ws2-cyan-b));
  color: #03111f;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(47, 159, 232, 0.3);
}

.ws2-card .btn.btn-primary:hover,
.ws2-package .btn.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--ws2-cyan-a);
}

/* Process & Booking */
.ws2-process li {
  border: 1px solid rgba(111, 211, 255, 0.24);
  border-radius: 12px;
  background: rgba(9, 22, 42, 0.72);
  padding: 14px 16px;
  transition: 0.2s;
}

.ws2-process li:hover {
  border-color: var(--ws2-accent-2);
}

.ws2-booking {
  border: 1px solid var(--ws2-border);
  border-radius: 18px;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

/* Cart Sidebar (Ops Style) */
.cart-sidebar {
  background: rgba(7, 19, 38, 0.9) !important;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-left: 1px solid var(--ws2-accent);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: rgba(16, 36, 65, 0.9);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid var(--ws2-accent);
  border-radius: 10px;
  padding: 10px 14px;
  z-index: 1100;
}

/* Mobile Overrides */
@media (max-width: 768px) {
  .ws2-hero-card { padding: 24px; }
  .ws2-package-featured { transform: scale(1); margin: 10px 0; }
  .ws2-jump-nav { top: 64px; }
}
/* --- OPS OVERRIDE --- */
.ws2-hero-card.hero-grid { display: grid; gap: 40px; align-items: center; grid-template-columns: 1.1fr 0.9fr; text-align: left; }
.ws2-hero-card .hero-visual-card { background: rgba(7, 19, 38, 0.4); backdrop-filter: blur(10px); border: 1px solid var(--ws2-border); animation: float 6s ease-in-out infinite; }
.ws2-hero-card .meter-fill::after { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); animation: shimmer 2s infinite; }
@keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
.ops-status { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--ws2-accent-2); }
.status-blink { width: 8px; height: 8px; background: #00ff88; border-radius: 50%; box-shadow: 0 0 8px #00ff88; animation: pulse-green 2s infinite; }
@keyframes pulse-green { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
