/* ==========================================================================
   DotXpertise - Modern Dark Theme & Ultra-Responsive Landing Page Styles
   Brand Colors: Red (#ef3b3b), Yellow (#f5b400), Dark (#050505)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Root Variables & Reset
   -------------------------------------------------------------------------- */
:root {
  --bg-dark: #050505;
  --bg-dark-surface: #0a0a0c;
  --bg-card: rgba(255, 255, 255, 0.05);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --text-white: #ffffff;
  --text-muted: #b8b8b8;
  --text-dim: #71717a;
  
  --brand-red: #ef3b3b;
  --brand-red-glow: rgba(239, 59, 59, 0.35);
  --brand-yellow: #f5b400;
  --brand-yellow-glow: rgba(245, 180, 0, 0.35);
  --brand-black: #000000;
  
  --whatsapp-green: #25d366;
  --whatsapp-glow: rgba(37, 211, 102, 0.45);
  
  --border-soft: rgba(255, 255, 255, 0.12);
  --border-glow: rgba(239, 59, 59, 0.4);
  
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-mono: 'Fira Code', monospace;
  
  --container-max: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-main);
}

body {
  min-height: 100vh;
  line-height: 1.6;
  background: var(--bg-dark);
  color: var(--text-white);
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* --------------------------------------------------------------------------
   2. Background Grid & Animated Canvas
   -------------------------------------------------------------------------- */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.grid-background {
  position: fixed;
  inset: 0;
  background-size: 50px 50px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  pointer-events: none;
  z-index: 1;
  mask-image: radial-gradient(circle at 50% 30%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, black 20%, transparent 80%);
}

.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 1;
}

.ambient-glow-1 {
  top: -10%;
  left: 15%;
  width: 500px;
  height: 500px;
  background: rgba(239, 59, 59, 0.15);
  animation: floatGlow 14s infinite alternate ease-in-out;
}

.ambient-glow-2 {
  top: 35%;
  right: -5%;
  width: 450px;
  height: 450px;
  background: rgba(245, 180, 0, 0.12);
  animation: floatGlow 18s infinite alternate-reverse ease-in-out;
}

.ambient-glow-3 {
  bottom: 10%;
  left: 20%;
  width: 600px;
  height: 600px;
  background: rgba(239, 59, 59, 0.1);
  animation: floatGlow 20s infinite alternate ease-in-out;
}

@keyframes floatGlow {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.1); }
  100% { transform: translate(-30px, 40px) scale(0.95); }
}

/* --------------------------------------------------------------------------
   3. Main Layout & Container
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

main {
  width: 100%;
  overflow-x: hidden;
}

/* --------------------------------------------------------------------------
   4. Header & Navigation UI
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.9rem 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(6, 6, 10, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: padding var(--transition-fast);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  padding: 4px 6px;
}

.brand-wrapper::before {
  content: '';
  position: absolute;
  inset: -6px -10px;
  border-radius: var(--radius-md);
  background: radial-gradient(
    ellipse at center, 
    rgba(255, 255, 255, 0.75) 0%, 
    rgba(255, 255, 255, 0.35) 45%, 
    rgba(239, 59, 59, 0.2) 75%, 
    transparent 100%
  );
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.72;
  transition: opacity var(--transition-fast);
}

.brand-wrapper:hover::before {
  opacity: 0.9;
}

.brand-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.8))
          drop-shadow(0 0 16px rgba(239, 59, 59, 0.35));
}

.header-center-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 1rem;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--whatsapp-green);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

.live-dot-green {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--whatsapp-green);
  box-shadow: 0 0 10px var(--whatsapp-green);
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1.2); box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.4rem;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  white-space: nowrap;
  position: relative;
  border: 1px solid transparent;
}

.btn i {
  font-size: 1.1rem;
  transition: transform var(--transition-fast);
}

.btn:hover i {
  transform: translateX(3px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-whatsapp:hover {
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
  transform: translateY(-2px) scale(1.02);
}

.btn-call {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-white);
  border-color: var(--border-soft);
  backdrop-filter: blur(8px);
}

.btn-call:hover {
  background: rgba(239, 59, 59, 0.15);
  border-color: var(--brand-red);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--brand-red-glow);
}

.header-btn {
  padding: 0.62rem 1.25rem;
  font-size: 0.85rem;
}

.btn-primary-red {
  background: linear-gradient(135deg, var(--brand-red) 0%, #c02626 100%);
  color: var(--text-white);
  box-shadow: 0 4px 20px var(--brand-red-glow);
  font-size: 1rem;
  padding: 0.9rem 1.8rem;
}

.btn-hero-lg {
  padding: 0.95rem 2rem;
  font-size: 1rem;
  border-radius: var(--radius-full);
}

/* --------------------------------------------------------------------------
   5. Hero Section UI
   -------------------------------------------------------------------------- */
.hero-section {
  padding: 4.5rem 0 4rem 0;
  position: relative;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

.hero-content {
  width: 100%;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius-full);
  background: rgba(245, 180, 0, 0.08);
  border: 1px solid rgba(245, 180, 0, 0.35);
  color: var(--brand-yellow);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

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

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 180, 0, 0.7); }
  70% { transform: scale(1.2); box-shadow: 0 0 0 10px rgba(245, 180, 0, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 180, 0, 0); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  word-break: break-word;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 20%, var(--brand-yellow) 65%, var(--brand-red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 25px rgba(245, 180, 0, 0.25));
}

.hero-subheadline-box {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 1.25rem;
  background: rgba(239, 59, 59, 0.08);
  border: 1px solid rgba(239, 59, 59, 0.3);
  border-radius: var(--radius-md);
  color: var(--text-white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 20px rgba(239, 59, 59, 0.12);
}

.hero-subheadline-box i {
  color: var(--brand-red);
  font-size: 1.2rem;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.2rem;
  max-width: 620px;
  word-break: break-word;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 2rem;
}

.hero-trust-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.hero-trust-line i {
  color: var(--brand-yellow);
  font-size: 1rem;
}

/* Hero HUD Card */
.hero-visual {
  position: relative;
  padding: 1.25rem 0;
  width: 100%;
}

.hud-card {
  background: linear-gradient(145deg, rgba(15, 15, 20, 0.95) 0%, rgba(8, 8, 12, 0.95) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.hud-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-red) 0%, var(--brand-yellow) 100%);
}

.hud-header {
  background: rgba(255, 255, 255, 0.03);
  padding: 0.85rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.window-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.hud-status-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--brand-yellow);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
}

.hud-body {
  padding: 1.4rem;
}

.hud-progress-box {
  margin-bottom: 1.15rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.progress-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.progress-label {
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.progress-label i { color: var(--brand-yellow); }

.progress-value {
  color: var(--brand-yellow);
  font-family: var(--font-mono);
}

.progress-bar-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.progress-bar-fill {
  width: 85%;
  height: 100%;
  background: linear-gradient(90deg, var(--brand-red) 0%, var(--brand-yellow) 100%);
  border-radius: var(--radius-full);
}

.hud-terminal-container {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 0.8rem 0.9rem;
  margin-bottom: 1.15rem;
}

.terminal-bar {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hud-terminal {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 1.6;
  color: #d4d4d4;
  min-height: 130px;
  overflow-x: auto;
}

.term-line {
  margin-bottom: 0.35rem;
  display: block;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.term-prompt {
  color: var(--brand-red);
  font-weight: 700;
  user-select: none;
  margin-right: 0.3rem;
}

.term-keyword { color: #569cd6; }
.term-string { color: #ce9178; }
.term-val { color: var(--brand-yellow); }
.term-comment { color: #6a9955; font-style: italic; }

.cursor-blink {
  display: inline-block;
  width: 8px;
  height: 15px;
  background: var(--brand-yellow);
  margin-left: 2px;
  vertical-align: middle;
  animation: blink 1s steps(2, start) infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hud-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.15rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
}

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

.metric-val {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--brand-yellow);
  margin-bottom: 0.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.metric-lbl {
  font-size: 0.7rem;
  color: var(--text-dim);
}

.hud-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hud-tag {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  padding: 0.2rem 0.6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
}

.floating-hud-badge {
  position: absolute;
  background: rgba(15, 15, 20, 0.95);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-soft);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  z-index: 5;
  white-space: nowrap;
}

.badge-top-right {
  top: -10px;
  right: 0;
  border-color: rgba(245, 180, 0, 0.45);
}

.badge-bottom-left {
  bottom: -12px;
  left: 0;
  border-color: rgba(37, 211, 102, 0.45);
}

.badge-icon-glow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(245, 180, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-yellow);
  font-size: 0.8rem;
}

.badge-icon-glow.green-glow {
  background: rgba(37, 211, 102, 0.15);
  color: var(--whatsapp-green);
}

/* --------------------------------------------------------------------------
   6. Services Section UI
   -------------------------------------------------------------------------- */
.services-section {
  padding: 5.5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  background: rgba(245, 180, 0, 0.08);
  border: 1px solid rgba(245, 180, 0, 0.3);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-yellow);
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtext {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
}

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

.service-card {
  background: linear-gradient(145deg, rgba(20, 20, 26, 0.85) 0%, rgba(10, 10, 14, 0.95) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-red) 0%, var(--brand-yellow) 100%);
  opacity: 0.35;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(239, 59, 59, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.75);
}

.card-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.card-icon-box {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(239, 59, 59, 0.12);
  border: 1px solid rgba(239, 59, 59, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-red);
  font-size: 1.35rem;
}

.service-card.accent-yellow .card-icon-box {
  background: rgba(245, 180, 0, 0.12);
  border-color: rgba(245, 180, 0, 0.3);
  color: var(--brand-yellow);
}

.card-index-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-yellow);
  background: rgba(245, 180, 0, 0.08);
  border: 1px solid rgba(245, 180, 0, 0.2);
  padding: 0.18rem 0.6rem;
  border-radius: var(--radius-sm);
}

.card-content-body {
  margin-bottom: 1.35rem;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.service-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.service-card-footer {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.card-inquire-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.58rem 0.75rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--brand-yellow);
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.btn-text-group {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.card-inquire-btn i.btn-arrow {
  font-size: 0.8rem;
  transition: transform var(--transition-fast);
}

.service-card:hover .card-inquire-btn {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

/* --------------------------------------------------------------------------
   FAQ Accordion Section Styling
   -------------------------------------------------------------------------- */
.faq-section {
  padding: 5rem 0;
  position: relative;
}

.faq-accordion-grid {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-card {
  background: linear-gradient(145deg, rgba(20, 20, 26, 0.85) 0%, rgba(10, 10, 14, 0.95) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-card:hover {
  border-color: rgba(245, 180, 0, 0.4);
}

.faq-question-btn {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-question-btn:hover {
  color: var(--brand-yellow);
}

.faq-icon {
  font-size: 0.9rem;
  color: var(--brand-yellow);
  transition: transform var(--transition-fast);
}

.faq-card.active .faq-icon {
  transform: rotate(180deg);
  color: var(--brand-red);
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.4rem;
}

.faq-card.active .faq-answer-panel {
  max-height: 250px;
  padding: 0 1.4rem 1.25rem 1.4rem;
}

.faq-answer-panel p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-answer-panel strong {
  color: var(--brand-yellow);
}

/* --------------------------------------------------------------------------
   7. Contact Section UI
   -------------------------------------------------------------------------- */
.contact-section {
  padding: 5rem 0 6rem 0;
  position: relative;
}

.contact-card-box {
  background: linear-gradient(145deg, rgba(16, 16, 22, 0.95) 0%, rgba(8, 8, 12, 0.98) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem 3rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85);
}

.contact-card-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-red) 0%, var(--brand-yellow) 50%, var(--whatsapp-green) 100%);
}

.contact-glow-backdrop {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(239, 59, 59, 0.18) 0%, rgba(245, 180, 0, 0.12) 45%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1.1rem;
  background: rgba(239, 59, 59, 0.1);
  border: 1px solid rgba(239, 59, 59, 0.35);
  border-radius: var(--radius-full);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.live-dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-red);
  box-shadow: 0 0 10px var(--brand-red);
  animation: pulseRed 1.6s infinite;
}

@keyframes pulseRed {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 59, 59, 0.8); }
  70% { transform: scale(1.25); box-shadow: 0 0 0 10px rgba(239, 59, 59, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 59, 59, 0); }
}

.contact-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.contact-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 660px;
  margin: 0 auto 2.2rem auto;
  line-height: 1.65;
  position: relative;
  z-index: 1;
  word-break: break-word;
}

.contact-phone-wrapper {
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.contact-phone-display {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  background: linear-gradient(135deg, rgba(245, 180, 0, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 180, 0, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all var(--transition-normal);
  text-decoration: none;
}

.contact-phone-display:hover {
  transform: translateY(-2px);
  border-color: var(--brand-yellow);
}

.phone-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245, 180, 0, 0.15);
  border: 1px solid rgba(245, 180, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-yellow);
  font-size: 1.15rem;
}

.phone-number-text {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--brand-yellow);
  letter-spacing: 0.02em;
}

.contact-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.btn-contact-action {
  padding: 0.9rem 2rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.btn-contact-action i {
  font-size: 1.4rem;
}

.btn-label-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-main-label {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.btn-sub-label {
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0.85;
}

.contact-trust-bar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  padding: 0.8rem 1.6rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.contact-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.contact-trust-item i {
  color: var(--brand-yellow);
}

.contact-trust-divider {
  color: rgba(255, 255, 255, 0.2);
}

/* --------------------------------------------------------------------------
   8. Footer UI
   -------------------------------------------------------------------------- */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(8, 8, 12, 0.98) 0%, rgba(4, 4, 6, 1) 100%);
  padding: 3.5rem 0 2.2rem 0;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.footer-tagline-badge {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-yellow);
  background: rgba(245, 180, 0, 0.08);
  border: 1px solid rgba(245, 180, 0, 0.25);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
}

.footer-quick-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-action-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.green-pill {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: var(--whatsapp-green);
}

.red-pill {
  background: rgba(239, 59, 59, 0.1);
  border: 1px solid rgba(239, 59, 59, 0.3);
  color: var(--text-white);
}

.footer-services-container {
  text-align: center;
}

.footer-services-header {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 1.1rem;
}

.footer-services-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
}

.footer-pill i {
  color: var(--brand-yellow);
}

.footer-bottom {
  width: 100%;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 0.85rem;
}

.footer-contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 180, 0, 0.25);
  border-radius: var(--radius-full);
  color: var(--text-muted);
  font-size: 0.82rem;
  text-decoration: none;
}

.footer-contact-badge i, .footer-contact-badge strong {
  color: var(--brand-yellow);
}

/* --------------------------------------------------------------------------
   9. Sticky Mobile Bottom Action Bar (Mobile Devices)
   -------------------------------------------------------------------------- */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(8, 8, 12, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.65rem 0.9rem;
  z-index: 999;
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.85);
}

.sticky-mobile-bar .sticky-actions {
  display: flex;
  gap: 0.65rem;
  width: 100%;
}

.sticky-mobile-bar .btn {
  flex: 1;
  padding: 0.7rem 0.5rem;
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   10. Scroll & Reveal Animations
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   11. ABSOLUTE ZERO OVERFLOW & PERFECT MOBILE RESPONSIVE MEDIA QUERIES (< 768px)
   ========================================================================== */

/* Laptops / Desktops (1200px and below) */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }
}

/* Tablets (992px and below) */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 100%;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-badge-pill {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-subheadline-box {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-trust-line {
    justify-content: center;
  }

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

  .header-center-status {
    display: none;
  }

  .footer-top-row {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }
}

/* MOBILE PHONES (< 768px) - BULLETPROOF NO-OVERFLOW FIX */
@media (max-width: 768px) {
  /* Header Layout */
  .header {
    padding: 0.55rem 0;
  }

  .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
  }

  .brand-wrapper {
    padding: 2px;
  }

  .brand-logo-img {
    height: 32px;
    max-width: 120px;
  }

  .header-actions {
    gap: 0.4rem;
  }

  .header-btn {
    padding: 0.45rem 0.75rem;
    font-size: 0.76rem;
  }

  .header-btn span {
    display: inline;
  }

  /* Hero Section */
  .hero-section {
    padding: 1.5rem 0 2rem 0;
    width: 100%;
    overflow-x: hidden;
  }

  .hero-grid {
    grid-template-columns: 100%;
    gap: 1.75rem;
    width: 100%;
    margin: 0;
  }

  .hero-content {
    width: 100%;
    text-align: center;
    padding: 0;
  }

  .hero-badge-pill {
    display: flex;
    max-width: 100%;
    width: 100%;
    white-space: normal;
    font-size: 0.72rem;
    padding: 0.45rem 0.75rem;
    line-height: 1.4;
    text-align: center;
    justify-content: center;
    word-break: break-word;
    margin: 0 auto 1.1rem auto;
    box-sizing: border-box;
  }

  .hero-title {
    font-size: clamp(1.6rem, 6.8vw, 2.2rem);
    line-height: 1.2;
    word-break: break-word;
    margin-bottom: 1rem;
    text-align: center;
  }

  .hero-subheadline-box {
    display: flex;
    max-width: 100%;
    width: 100%;
    white-space: normal;
    font-size: 0.85rem;
    padding: 0.55rem 0.75rem;
    line-height: 1.45;
    text-align: center;
    justify-content: center;
    margin: 0 auto 1.2rem auto;
    word-break: break-word;
    box-sizing: border-box;
  }

  .hero-description {
    font-size: 0.92rem;
    line-height: 1.6;
    max-width: 100%;
    margin: 0 auto 1.5rem auto;
    word-break: break-word;
    text-align: center;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 0.65rem;
  }

  .hero-ctas .btn {
    width: 100%;
    box-sizing: border-box;
    padding: 0.8rem 1rem;
    font-size: 0.92rem;
    text-align: center;
    justify-content: center;
  }

  .hero-trust-line {
    justify-content: center;
    font-size: 0.78rem;
    text-align: center;
  }

  /* HUD Visual Card */
  .hero-visual {
    width: 100%;
    padding: 0;
  }

  .hud-card {
    width: 100%;
  }

  .hud-body {
    padding: 1rem 0.75rem;
  }

  .hud-metrics-grid {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    padding: 0.6rem;
  }

  .floating-hud-badge {
    position: static;
    margin-top: 0.65rem;
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  /* Services Section */
  .services-section {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2.2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .services-grid {
    grid-template-columns: 100%;
    gap: 1rem;
  }

  .service-card {
    padding: 1.25rem 1rem;
  }

  /* FAQ Section */
  .faq-section {
    padding: 3rem 0;
  }

  .faq-question-btn {
    font-size: 0.92rem;
    padding: 0.9rem 1rem;
  }

  .faq-answer-panel p {
    font-size: 0.86rem;
  }

  /* Contact Box Section */
  .contact-section {
    padding: 3rem 0 4rem 0;
  }

  .contact-card-box {
    padding: 2rem 0.85rem 1.75rem 0.85rem;
  }

  .contact-phone-display {
    width: 100%;
    padding: 0.75rem 0.5rem;
  }

  .phone-number-text {
    font-size: 1.25rem;
  }

  .contact-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.65rem;
  }

  .contact-actions .btn {
    width: 100%;
    padding: 0.8rem 1rem;
  }

  .contact-trust-bar {
    border-radius: var(--radius-md);
    flex-direction: column;
    gap: 0.4rem;
    width: 100%;
    padding: 0.65rem;
  }

  .contact-trust-divider {
    display: none;
  }

  /* Footer */
  .footer {
    padding: 2.2rem 0 1.6rem 0;
  }

  .footer-quick-actions {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.6rem;
  }

  .footer-contact-badge {
    width: 100%;
    justify-content: center;
  }

  /* Sticky Mobile Bar */
  .sticky-mobile-bar {
    display: block;
  }

  body {
    padding-bottom: 65px;
  }
}

/* EXTRA NARROW PHONES (< 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }

  .brand-logo-img {
    height: 28px;
    max-width: 110px;
  }

  .header-btn span {
    display: none; /* Icon only for clean navbar alignment */
  }

  .header-btn i {
    font-size: 1rem;
  }

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

  .phone-number-text {
    font-size: 1.12rem;
  }

  .hud-terminal {
    font-size: 0.7rem;
  }
}
