/* ----------------------------------------------------
   AUSTRALIAN TECH REPAIR HERO SECTION STYLE
   Theme: High-Tech Dark Mode with Orange Accent #F26D39
------------------------------------------------------- */

:root {
  --primary-color: #F26D39;
  --primary-rgb: 242, 109, 57;
  --primary-glow: rgba(242, 109, 57, 0.45);
  --primary-glow-soft: rgba(242, 109, 57, 0.15);
  --primary-glow-ultra: rgba(242, 109, 57, 0.05);
  
  --dark-bg: #070913;
  --dark-card: rgba(15, 18, 36, 0.7);
  --dark-card-hover: rgba(22, 26, 48, 0.85);
  
  --border-color: rgba(242, 109, 57, 0.15);
  --border-hover: rgba(242, 109, 57, 0.45);
  
  --text-main: #FFFFFF;
  --text-secondary: #A0AEC0;
  --text-muted: #718096;
  
  --whatsapp-color: #25D366;
  --whatsapp-rgb: 37, 211, 102;
  --whatsapp-glow: rgba(37, 211, 102, 0.4);
  
  --font-primary: 'Outfit', sans-serif;
  --font-secondary: 'Plus Jakarta Sans', sans-serif;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  
  --glass-blur: blur(16px);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--dark-bg);
}

body {
  font-family: var(--font-primary);
  color: var(--text-main);
  background-color: var(--dark-bg);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  line-height: 1.5;
}

/* ----------------------------------------------------
   BACKGROUND DECORATION (Orbs & Grid)
------------------------------------------------------- */

.bg-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  mix-blend-mode: plus-lighter;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.8) 0%, rgba(var(--primary-rgb), 0) 70%);
  top: -10%;
  left: -5%;
  animation: floatOrb1 15s infinite alternate ease-in-out;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.5) 0%, rgba(33, 44, 97, 0.4) 50%, rgba(0, 0, 0, 0) 70%);
  bottom: 0%;
  right: -10%;
  animation: floatOrb2 20s infinite alternate ease-in-out;
}

.bg-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(242, 109, 57, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 109, 57, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
  pointer-events: none;
}

/* ----------------------------------------------------
   HEADER NAVIGATION
------------------------------------------------------- */

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(7, 9, 19, 0.7);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding: 1.25rem 0;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-decoration: none;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon-hillside {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 0 6px var(--primary-glow-soft));
  transition: transform var(--transition-normal);
}

.logo:hover .logo-icon-hillside {
  transform: translateY(-2px) scale(1.05);
}

.logo-text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.logo-title {
  font-family: var(--font-secondary);
  font-weight: 800;
  font-size: 1.55rem;
  color: var(--primary-color);
  letter-spacing: -0.5px;
  text-shadow: 0 0 10px var(--primary-glow-ultra);
}

.logo-subtitle {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.65rem;
  color: #8C98A9;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(242, 109, 57, 0.07);
  border: 1px solid rgba(242, 109, 57, 0.2);
  border-radius: 100px;
  padding: 0.4rem 0.9rem;
  box-shadow: inset 0 0 4px var(--primary-glow-ultra);
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 8px var(--primary-color);
}

.status-dot::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 16px;
  height: 16px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  animation: dotPulse 2s infinite ease-out;
}

.status-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ----------------------------------------------------
   HERO CONTAINER LAYOUT
------------------------------------------------------- */

.hero-section {
  position: relative;
  padding: 8rem 0 5rem 0;
  display: flex;
  align-items: center;
  min-height: 100vh;
  z-index: 10;
}

.hero-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

/* Left Hero Content styling */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 10;
}

.badge-wrapper {
  margin-bottom: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: var(--transition-normal);
}

.hero-badge:hover {
  border-color: var(--primary-color);
  color: var(--text-main);
  box-shadow: 0 0 15px var(--primary-glow-soft);
}

.badge-icon {
  width: 16px;
  height: 16px;
  color: var(--primary-color);
}

.pulse-fast {
  animation: iconPulse 1.5s infinite ease-in-out;
}

.hero-title {
  font-family: var(--font-secondary);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, #FFFFFF 40%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
  text-shadow: 0 0 40px var(--primary-glow-ultra);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 580px;
  line-height: 1.65;
  font-weight: 400;
}

/* ----------------------------------------------------
   CTA BUTTONS (Glowing & Animated Icons)
------------------------------------------------------- */

.cta-button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  width: 100%;
}

.btn {
  text-decoration: none;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
  z-index: 10;
  cursor: pointer;
  flex: 1;
  min-width: 250px;
  max-width: 280px;
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  position: relative;
  z-index: 5;
}

.btn-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 100%;
  height: 100%;
  border-radius: inherit;
  opacity: 0;
  transition: var(--transition-normal);
  z-index: 1;
}

.icon-container-animated {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition-normal);
  flex-shrink: 0;
}

.btn-icon {
  width: 22px;
  height: 22px;
  transition: var(--transition-normal);
}

.btn-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.btn-main-text {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Primary Button: Phone #0413 234 701 */
.btn-primary {
  background: var(--primary-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.25);
  color: var(--text-main);
}

.btn-primary .btn-glow {
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.6) 0%, transparent 70%);
  box-shadow: 0 0 35px var(--primary-color);
}

.btn-primary .icon-container-animated {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
}

.btn-primary .btn-label {
  color: rgba(255, 255, 255, 0.85);
}

/* Animated SVG Phone Waves */
.svg-phone-call .wave {
  transform-origin: bottom left;
  opacity: 0.3;
}

.svg-phone-call:hover .wave,
.btn-primary:hover .svg-phone-call .wave {
  animation: phoneWaves 1.2s infinite ease-in-out;
}

.svg-phone-call .wave-1 {
  animation-delay: 0s;
}

.svg-phone-call .wave-2 {
  animation-delay: 0.3s;
}

/* Primary Button Hover Actions */
.btn-primary:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.5);
}

.btn-primary:hover .btn-glow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.btn-primary:hover .icon-container-animated {
  transform: scale(1.05);
  background: var(--text-main);
  color: var(--primary-color);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.btn-primary:hover .svg-phone-call {
  animation: phoneRing 0.5s ease-in-out infinite alternate;
}

/* Secondary Button: WhatsApp Now */
.btn-secondary {
  background: rgba(18, 22, 38, 0.5);
  border: 1px solid rgba(var(--whatsapp-rgb), 0.25);
  color: var(--text-main);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.btn-secondary .btn-glow {
  background: radial-gradient(circle, rgba(var(--whatsapp-rgb), 0.4) 0%, transparent 70%);
  box-shadow: 0 0 30px var(--whatsapp-glow);
}

.btn-secondary .icon-container-animated {
  background: rgba(var(--whatsapp-rgb), 0.1);
  color: var(--whatsapp-color);
  border: 1px solid rgba(var(--whatsapp-rgb), 0.2);
}

.btn-secondary .btn-label {
  color: var(--text-secondary);
}

/* Secondary Button Hover Actions */
.btn-secondary:hover {
  transform: translateY(-3px);
  border-color: var(--whatsapp-color);
  box-shadow: 0 10px 30px rgba(var(--whatsapp-rgb), 0.25);
}

.btn-secondary:hover .btn-glow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.btn-secondary:hover .icon-container-animated {
  background: var(--whatsapp-color);
  color: var(--text-main);
  box-shadow: 0 0 15px rgba(var(--whatsapp-rgb), 0.5);
}

.btn-secondary:hover .svg-whatsapp {
  animation: waPulse 1s infinite alternate ease-in-out;
}

/* Keyframes for CTA Animations */
@keyframes phoneRing {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(-15deg); }
  50% { transform: rotate(0deg); }
  75% { transform: rotate(15deg); }
  100% { transform: rotate(0deg); }
}

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

@keyframes waPulse {
  0% { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.15) rotate(5deg); }
}

/* ----------------------------------------------------
   SERVICES GRID BADGES (iPad, iPhone, Android, Others)
------------------------------------------------------- */

.services-list-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.services-title {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  width: 100%;
}

.service-item-badge {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 0.85rem 1.15rem;
  cursor: pointer;
  transition: var(--transition-normal);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.service-icon-bg {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(242, 109, 57, 0.08);
  border: 1px solid rgba(242, 109, 57, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: var(--transition-normal);
  flex-shrink: 0;
}

.service-svg {
  width: 20px;
  height: 20px;
  transition: var(--transition-normal);
}

.service-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition-normal);
}

/* Services Badge Glow & Hover */
.service-item-badge:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: var(--border-hover);
  background: var(--dark-card-hover);
  box-shadow: 0 8px 25px var(--primary-glow-soft);
}

.service-item-badge:hover .service-icon-bg {
  background: var(--primary-color);
  color: var(--text-main);
  box-shadow: 0 0 12px var(--primary-glow);
}

.service-item-badge:hover .service-name {
  color: var(--text-main);
}

.service-item-badge:hover .service-svg {
  transform: scale(1.1);
}

/* Active Badge State from JavaScript Selection */
.service-item-badge.active-badge {
  transform: translateY(-2px) scale(1.02);
  border-color: var(--border-hover);
  background: var(--dark-card-hover);
  box-shadow: 0 8px 25px var(--primary-glow);
}

.service-item-badge.active-badge .service-icon-bg {
  background: var(--primary-color);
  color: var(--text-main);
  box-shadow: 0 0 12px var(--primary-glow);
}

.service-item-badge.active-badge .service-name {
  color: var(--text-main);
}

.service-item-badge.active-badge .service-svg {
  transform: scale(1.1);
}

/* Custom specific hover icons animations */
#service-ipad:hover .service-svg {
  animation: ipadFloat 2s infinite ease-in-out;
}
#service-iphone:hover .service-svg {
  animation: iphoneVibrate 0.4s infinite ease-in-out;
}
#service-android:hover .service-svg {
  animation: androidDance 1s infinite ease-in-out;
}
#service-others:hover .service-svg {
  animation: spinSlow 3s infinite linear;
}

/* Service Item Anim Keyframes */
@keyframes ipadFloat {
  0%, 100% { transform: translateY(0) scale(1.1); }
  50% { transform: translateY(-3px) scale(1.1); }
}

@keyframes iphoneVibrate {
  0%, 100% { transform: translate(0, 0) scale(1.1); }
  25% { transform: translate(-1px, 1px) scale(1.1); }
  50% { transform: translate(1px, -1px) scale(1.1); }
  75% { transform: translate(-1px, -1px) scale(1.1); }
}

@keyframes androidDance {
  0%, 100% { transform: rotate(0) scale(1.1); }
  25% { transform: rotate(-8deg) scale(1.1); }
  75% { transform: rotate(8deg) scale(1.1); }
}

@keyframes spinSlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ----------------------------------------------------
   HERO RIGHT VISUALIZER (Interactive Dashboard)
------------------------------------------------------- */

.hero-visualizer {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
  width: 100%;
}

.visualizer-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
}

/* Dashboard Container Card */
.glass-card {
  background: rgba(12, 15, 30, 0.65);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 40px var(--primary-glow-ultra);
  padding: 1.5rem;
  position: relative;
  z-index: 10;
  overflow: hidden;
  transition: border-color var(--transition-slow);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.glass-card:hover {
  border-color: rgba(var(--primary-rgb), 0.35);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 50px rgba(var(--primary-rgb), 0.12);
}

/* Dashboard Header Options */
.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.75rem;
}

.window-buttons {
  display: flex;
  gap: 6px;
}

.win-btn {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.win-btn.red { background-color: #FF5F56; }
.win-btn.yellow { background-color: #FFBD2E; }
.win-btn.green { background-color: #27C93F; }

.dashboard-title {
  font-size: 0.75rem;
  font-family: var(--font-secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
}

.status-indicator-live {
  width: 10px;
  height: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.status-indicator-live .pulse-core {
  width: 6px;
  height: 6px;
  background-color: var(--whatsapp-color);
  border-radius: 50%;
  z-index: 5;
}

.status-indicator-live .pulse-ring {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid var(--whatsapp-color);
  border-radius: 50%;
  animation: dotPulse 1.8s infinite ease-out;
}

/* Diagnostic container grid overlay */
.diagnostic-container {
  height: 330px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background-color: rgba(6, 8, 17, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.holo-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(rgba(242, 109, 57, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 109, 57, 0.04) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.8;
}

/* ----------------------------------------------------
   SVG DIAGNOSTIC SCHEMATIC ANIMATIONS
------------------------------------------------------- */

.diagnostic-schematic {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 5;
}

.schematic-path {
  fill: none;
  stroke: rgba(242, 109, 57, 0.15);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.schematic-pulse {
  fill: none;
  stroke: var(--primary-color);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 20 80;
  filter: drop-shadow(0 0 4px var(--primary-color));
}

.pulse-1 { animation: pulsePath1 3s infinite linear; }
.pulse-2 { animation: pulsePath2 3.5s infinite linear; }
.pulse-3 { animation: pulsePath3 2.5s infinite linear; }

.path-node {
  fill: var(--dark-bg);
  stroke: var(--primary-color);
  stroke-width: 2;
  filter: drop-shadow(0 0 6px var(--primary-color));
  animation: nodePulsate 2s infinite alternate ease-in-out;
}

.orbit-ring {
  fill: none;
  stroke: rgba(242, 109, 57, 0.08);
  stroke-width: 1.5;
  stroke-dasharray: 6 6;
  transform-origin: 200px 175px;
}

.ring-inner {
  animation: spinSlow 15s infinite linear;
}

.ring-outer {
  stroke-width: 1;
  stroke-dasharray: 2 12;
  animation: spinSlow 30s infinite linear reverse;
}

.core-base {
  fill: rgba(7, 9, 19, 0.95);
  stroke: var(--primary-color);
  stroke-width: 2.5;
}

.core-icon-spin {
  transform-origin: 200px 175px;
  animation: spinSlow 12s infinite ease-in-out;
}

/* Schematic Keyframes */
@keyframes pulsePath1 {
  0% { stroke-dashoffset: 100; }
  100% { stroke-dashoffset: 0; }
}
@keyframes pulsePath2 {
  0% { stroke-dashoffset: 100; }
  100% { stroke-dashoffset: 0; }
}
@keyframes pulsePath3 {
  0% { stroke-dashoffset: 100; }
  100% { stroke-dashoffset: 0; }
}

@keyframes nodePulsate {
  0% { r: 4; stroke-width: 2; filter: drop-shadow(0 0 4px var(--primary-color)); }
  100% { r: 6; stroke-width: 3; filter: drop-shadow(0 0 10px var(--primary-color)); }
}

/* ----------------------------------------------------
   FLOATING DEVICE WIDGETS
------------------------------------------------------- */

.floating-widget {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(12, 16, 32, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 
    0 10px 25px rgba(0, 0, 0, 0.35),
    0 0 15px rgba(242, 109, 57, 0.05);
  border-radius: 12px;
  padding: 0.6rem 0.85rem;
  width: 175px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: var(--transition-normal);
}

.floating-widget:hover {
  transform: translateY(-4px) scale(1.05) !important;
  border-color: var(--primary-color);
  box-shadow: 
    0 15px 30px rgba(0, 0, 0, 0.45),
    0 0 20px var(--primary-glow-soft);
}

.widget-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(242, 109, 57, 0.06);
  border: 1px solid rgba(242, 109, 57, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.widget-icon svg {
  width: 18px;
  height: 18px;
  color: var(--primary-color);
  filter: drop-shadow(0 0 4px var(--primary-glow));
}

.widget-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.widget-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.widget-status {
  font-size: 0.65rem;
  font-weight: 600;
}

.status-healthy { color: var(--whatsapp-color); }
.status-error { color: #FF5F56; }
.status-repair { color: #FFBD2E; }

/* Highlight State for active diagnostic widget */
.floating-widget.highlight-widget {
  border-color: var(--primary-color) !important;
  box-shadow: 
    0 15px 30px rgba(0, 0, 0, 0.45),
    0 0 25px var(--primary-glow) !important;
  transform: scale(1.05) !important;
}

/* Widgets placement & float animations */
.widget-ipad {
  top: 15px;
  left: 15px;
  animation: floatWidget1 6s infinite alternate ease-in-out;
}

.widget-iphone {
  top: 15px;
  right: 15px;
  animation: floatWidget2 7s infinite alternate ease-in-out;
}

.widget-android {
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  animation: floatWidget3 6.5s infinite alternate ease-in-out;
}

/* Floating widgets keyframes */
@keyframes floatWidget1 {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

@keyframes floatWidget2 {
  0% { transform: translateY(-6px); }
  100% { transform: translateY(2px); }
}

@keyframes floatWidget3 {
  0% { transform: translate(-50%, 4px); }
  100% { transform: translate(-50%, -4px); }
}

/* Footer Stats Container Inside dashboard card */
.dashboard-footer-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.stat-num {
  font-family: var(--font-secondary);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-color);
  text-shadow: 0 0 10px var(--primary-glow-soft);
}

.stat-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 25px;
  background-color: rgba(255, 255, 255, 0.06);
}

/* Extra Floating badges in visualizer wrapper */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(14, 18, 38, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  padding: 0.5rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-secondary);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 20;
}

.badge-top-right {
  top: -20px;
  right: -20px;
  animation: floatWidget3 5.5s infinite alternate ease-in-out;
}

.badge-bottom-left {
  bottom: -15px;
  left: -25px;
  animation: floatWidget1 6.2s infinite alternate ease-in-out;
}

.glow-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.glow-indicator.green {
  background-color: var(--whatsapp-color);
  box-shadow: 0 0 8px var(--whatsapp-color);
}

.glow-indicator.orange {
  background-color: var(--primary-color);
  box-shadow: 0 0 8px var(--primary-color);
}

/* ----------------------------------------------------
   ANIMATION KEYFRAMES
------------------------------------------------------- */

@keyframes floatOrb1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(5%, 8%) scale(1.15); }
}

@keyframes floatOrb2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-8%, -5%) scale(1.08); }
}

@keyframes dotPulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.12); opacity: 0.85; filter: drop-shadow(0 0 6px var(--primary-color)); }
}

/* ----------------------------------------------------
   RESPONSIVENESS (Media Queries)
------------------------------------------------------- */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 5rem;
    padding-top: 6rem;
  }
  
  .hero-content {
    align-items: center;
    text-align: center;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-button-group {
    justify-content: center;
  }
  
  .hero-visualizer {
    margin-top: 1.5rem;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding-top: 7rem;
  }
  
  .hero-title {
    font-size: 2.35rem;
  }
  
  .cta-button-group {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 100%;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .visualizer-wrapper {
    max-width: 100%;
  }
  
  .floating-widget {
    width: 155px;
    padding: 0.5rem 0.75rem;
  }
  
  .badge-top-right {
    right: 0px;
  }
  
  .badge-bottom-left {
    left: 0px;
  }
}

@media (max-width: 480px) {
  .visualizer-wrapper {
    transform: scale(0.85);
    transform-origin: center top;
    margin-bottom: -50px;
  }
  
  .floating-widget {
    width: 130px;
    padding: 0.4rem 0.65rem;
  }
  
  .widget-icon {
    width: 26px;
    height: 26px;
  }
  
  .widget-icon svg {
    width: 14px;
    height: 14px;
  }
  
  .widget-title {
    font-size: 0.65rem;
  }
  
  .widget-status {
    font-size: 0.55rem;
  }
}
