:root {
  --bg: #000000;
  --bg-2: #0b0b0b;

  --dark: #020711;

  --card: rgba(255, 255, 255, 0.05);
  --card-2: rgba(255, 255, 255, 0.08);

  --line: rgba(255, 255, 255, 0.10);

  --white: #ffffff;
  --soft-white: #dcdcdc;
  --muted: #9a9a9a;

  /* 🔥 LOGO-MATCH RED */
  --blue: #e10600;        /* main red from logo */
  --blue-2: #7a0000;      /* deeper shadow red */

  --navy: #0a0a0a;

  /* 🔥 GLOW MATCHING LOGO */
  --glow: 0 0 28px rgba(225, 6, 0, 0.45);
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(29, 155, 255, 0.18), transparent 35%),
    radial-gradient(circle at bottom right, rgba(76, 201, 255, 0.12), transparent 30%),
    var(--bg);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.28;
  z-index: -3;
}

.glow-one {
  top: 12%;
  left: -150px;
  background: var(--blue);
}

.glow-two {
  right: -160px;
  bottom: 12%;
  background: var(--blue-2);
}

.grid-overlay {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  z-index: -2;
  pointer-events: none;
}

/* HEADER */

.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(2, 7, 17, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.navbar {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  background: white;
  border-radius: 14px;
  padding: 5px;
  box-shadow: var(--glow);
}

.logo-title {
  display: block;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.3px;
}

.logo-subtitle {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.92rem;
  color: var(--soft-white);
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: var(--blue-2);
  text-shadow: 0 0 14px rgba(76, 201, 255, 0.75);
}

.header-call {
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: var(--dark);
  font-weight: 900;
  border-radius: 999px;
  box-shadow: var(--glow);
}

/* MOBILE MENU */

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
  margin: 6px 0;
  border-radius: 999px;
}

/* HERO */

.hero-section {
  min-height: 100vh;
  position: relative;
  padding: 150px 22px 90px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 42px;
  max-width: 1240px;
  margin: 0 auto;
}

.hero-bg {
  position: absolute;
  inset: 90px -80px 40px;
  background:
    linear-gradient(to right, rgba(2,7,17,0.96), rgba(2,7,17,0.55)),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 0 0 42px 42px;
  opacity: 0.72;
  z-index: -1;
}

.hero-dark-layer {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(122,0,0,0.22), transparent 35%);
  z-index: -1;
}

.hero-content {
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(76, 201, 255, 0.45);
  background: rgba(29, 155, 255, 0.12);
  border-radius: 999px;
  color: var(--soft-white);
  font-weight: 800;
  margin-bottom: 24px;
}

.live-dot {
  width: 10px;
  height: 10px;
  background: var(--blue-2);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(76, 201, 255, 0.18);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  70% { transform: scale(1.35); opacity: 0.55; }
  100% { transform: scale(1); opacity: 1; }
}

.hero-content h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -4px;
  font-weight: 950;
  margin-bottom: 24px;
}

.hero-content h1 span {
  color: var(--blue-2);
  text-shadow: 0 0 28px rgba(76, 201, 255, 0.5);
}

.hero-description {
  max-width: 680px;
  color: var(--soft-white);
  font-size: 1.12rem;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: var(--dark);
  box-shadow: var(--glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(76, 201, 255, 0.7);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.btn-outline:hover {
  border-color: var(--blue-2);
  color: var(--blue-2);
  transform: translateY(-3px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 760px;
}

.hero-stats div {
  padding: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--line);
  border-radius: 22px;
  backdrop-filter: blur(12px);
}

.hero-stats strong {
  display: block;
  font-size: 1.15rem;
  color: var(--blue-2);
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.88rem;
}

/* HERO PANEL */

.hero-tech-panel {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
  border: 1px solid rgba(76, 201, 255, 0.35);
  border-radius: 30px;
  padding: 24px;
  box-shadow: 0 0 60px rgba(29, 155, 255, 0.25);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.hero-tech-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 25%, rgba(225, 6, 0,0.15), transparent 60%);
  transform: translateX(-100%);
  animation: shine 4s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%); }
  45% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

.panel-header {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.panel-header span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue-2);
  box-shadow: 0 0 14px rgba(76, 201, 255, 0.8);
}

.scan-line {
  height: 120px;
  background:
    linear-gradient(rgba(225,6,0,0.18), rgba(225,6,0,0.02)),
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.08) 0px,
      rgba(255,255,255,0.08) 1px,
      transparent 1px,
      transparent 11px
    );
  border-radius: 20px;
  border: 1px solid rgba(225,6,0,0.3);
  margin-bottom: 24px;
  position: relative;
}

.scan-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue-2);
  box-shadow: 0 0 22px var(--blue-2);
  animation: scan 2.8s infinite linear;
}

@keyframes scan {
  0% {
    top: 100%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    top: 0;
    opacity: 0;
  }
}

.hero-tech-panel h3 {
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.status-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.status-row span {
  color: var(--muted);
}

.status-row strong {
  color: var(--blue-2);
}

/* TRUST BAR */

.trust-bar {
  max-width: 1240px;
  margin: 0 auto 70px;
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.trust-bar div {
  text-align: center;
  padding: 18px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--line);
  color: var(--soft-white);
  font-weight: 800;
}

/* GLOBAL SECTIONS */

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 90px 22px;
}

.split-section,
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.section-label {
  color: var(--blue-2);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.section h2,
.center-heading h2,
.newsletter-content h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.section p,
.center-heading p,
.newsletter-content p {
  color: var(--soft-white);
  font-size: 1.03rem;
  margin-bottom: 18px;
}

.center-heading {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 46px;
}

/* IMAGE CARDS */

.service-card:hover,
.why-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(225,6,0,0.08);
  box-shadow:
    0 0 20px rgba(225,6,0,0.2),
    0 0 60px rgba(225,6,0,0.15);
}

.image-card,
.about-visual {
  min-height: 460px;
  border-radius: 34px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(76, 201, 255, 0.24);
  box-shadow: 0 0 60px rgba(29, 155, 255, 0.15);
}

.repair-image-card {
  background:
    linear-gradient(to top, rgba(2,7,17,0.95), rgba(2,7,17,0.2)),
    url("https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=1300&q=80");
  background-size: cover;
  background-position: center;
}

.image-card-overlay {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(2, 7, 17, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.image-card-overlay span {
  color: var(--blue-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.image-card-overlay h3 {
  margin-top: 10px;
  font-size: 1.6rem;
  line-height: 1.15;
}

/* SERVICES */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card,
.why-card,
.review-card,
.contact-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.095), rgba(255,255,255,0.045));
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 26px;
  overflow: hidden;
  transition: 0.3s ease;
}

.service-card::before,
.why-card::before,
.review-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(225,6,0,0.18), transparent 40%);
  opacity: 0;
  transition: 0.3s ease;
}

.service-card:hover,
.why-card:hover,
.review-card:hover,
.contact-card:hover {
  transform: translateY(-8px);
  border-color: rgba(76, 201, 255, 0.55);
  box-shadow: 0 0 42px rgba(29, 155, 255, 0.2);
}

.service-card:hover::before,
.why-card:hover::before,
.review-card:hover::before,
.contact-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: var(--dark);
  font-weight: 950;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  box-shadow: var(--glow);
}

.service-card h3,
.why-card h3,
.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.service-card p,
.why-card p,
.review-card p,
.contact-card p {
  color: var(--soft-white);
}

/* ABOUT */

.motherboard-card {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(2,7,17,0.95), rgba(2,7,17,0.22)),
    url("https://images.unsplash.com/photo-1591799264318-7e6ef8ddb7ea?auto=format&fit=crop&w=1300&q=80");
  background-size: cover;
  background-position: center;
}

.motherboard-card::after {
  content: "Las Vegas • Diagnostics • Repair • IT Support";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(2, 7, 17, 0.76);
  border: 1px solid var(--line);
  color: var(--blue-2);
  font-weight: 900;
  text-align: center;
  backdrop-filter: blur(14px);
}

/* WHY */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* REVIEWS */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.stars {
  color: #ffd166;
  font-size: 1.15rem;
  margin-bottom: 18px;
  letter-spacing: 2px;
}

.review-card h4 {
  margin-top: 18px;
  color: var(--blue-2);
}

.featured-review {
  border-color: rgba(76, 201, 255, 0.55);
  box-shadow: 0 0 44px rgba(29, 155, 255, 0.18);
}

.review-button-wrap {
  text-align: center;
  margin-top: 34px;
}

/* NEWSLETTER */

.newsletter-section {
  max-width: 1180px;
  margin: 40px auto;
  padding: 50px;
  border-radius: 36px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(122,0,0,0.22), rgba(255,255,255,0.06)),
    rgba(255,255,255,0.06);
  border: 1px solid rgba(76, 201, 255, 0.35);
  box-shadow: 0 0 60px rgba(29, 155, 255, 0.18);
}

.newsletter-form {
  display: flex;
  gap: 12px;
  background: rgba(2, 7, 17, 0.62);
  border: 1px solid var(--line);
  padding: 10px;
  border-radius: 999px;
}

.newsletter-form input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  padding: 0 16px;
  font-size: 1rem;
}

.newsletter-form input::placeholder {
  color: var(--muted);
}

.newsletter-form button {
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 900;
  cursor: pointer;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: var(--dark);
}

/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.contact-card span {
  display: inline-block;
  color: var(--blue-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.contact-card h3 {
  word-break: break-word;
}

/* FLOATING BUTTONS */

.floating-schedule {
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 998;
  padding: 16px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: var(--dark);
  font-weight: 950;
  box-shadow: 0 0 45px rgba(76, 201, 255, 0.65);
  animation: floatButton 2.4s ease-in-out infinite;
}

/* ADD THIS BELOW */
@media (max-width: 768px) {
  .floating-schedule {
    bottom: 80px;
  }
}

@keyframes floatButton {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.back-to-top {
  position: fixed;
  right: 26px;
  bottom: 90px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(2, 7, 17, 0.82);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

/* FOOTER */

.footer {
  padding: 40px 22px 110px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer img {
  width: 62px;
  margin: 0 auto 12px;
  background: white;
  border-radius: 16px;
  padding: 6px;
}

.footer p:first-of-type {
  color: var(--white);
  font-weight: 900;
}

/* REVEAL ANIMATION */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 1050px) {
  .hero-section,
  .split-section,
  .about-section,
  .newsletter-section {
    grid-template-columns: 1fr;
  }

  .hero-tech-panel {
    max-width: 620px;
  }

  .services-grid,
  .reviews-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid,
  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .header-call {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 83px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    padding: 22px;
    border-radius: 24px;
    background: rgba(2, 7, 17, 0.96);
    border: 1px solid var(--line);
    box-shadow: 0 0 40px rgba(122,0,0,0.2);
  }

  .nav-links.open {
    display: flex;
  }

  .hero-section {
    padding-top: 135px;
  }

  .hero-content h1 {
    letter-spacing: -2px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .reviews-grid,
  .contact-grid,
  .why-grid,
  .trust-bar {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
    border-radius: 24px;
  }

  .newsletter-form input {
    min-height: 48px;
  }

  .floating-schedule {
    left: 18px;
    right: 18px;
    text-align: center;
    justify-content: center;
  }

  .back-to-top {
    bottom: 92px;
  }
}

@media (max-width: 520px) {
  .navbar {
    padding: 12px 16px;
  }

  .site-logo {
    width: 48px;
    height: 48px;
  }

  .logo-title {
    font-size: 0.95rem;
  }

  .logo-subtitle {
    display: none;
  }

  .hero-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .section {
    padding: 72px 16px;
  }

  .newsletter-section {
    margin: 20px 16px;
    padding: 30px 22px;
  }

  .image-card,
  .about-visual {
    min-height: 360px;
  }
}
/* ===== OWNER SECTION ===== */

.owner-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: center;
  padding: 34px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(122,0,0,0.18), rgba(255,255,255,0.06));
  border: 1px solid rgba(76, 201, 255, 0.32);
  box-shadow: 0 0 60px rgba(122,0,0,0.18);
}

.owner-photo {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(225,6,0,0.35);
  box-shadow: 0 0 45px rgba(225,6,0,0.35);
}

.owner-photo:hover {
  transform: scale(1.02);
  transition: 0.3s ease;
  box-shadow: 0 0 70px rgba(225,6,0,0.45);
}
.owner-photo img {
  width: 100%;
  height: 520px;
  object-fit: contain;
  object-position: center top;
  background: linear-gradient(180deg, #111, #000);
}

.owner-photo img {
  transition: 0.3s ease;
}

.owner-photo:hover img {
  transform: scale(1.05);
}

.owner-copy h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  margin-bottom: 20px;
}

.owner-copy p {
  color: var(--soft-white);
  margin-bottom: 18px;
}

@media (max-width: 850px) {
  .owner-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .owner-photo img {
    height: 420px;
  }
}

/* ===== OWNER TRUST UPGRADES ===== */

.owner-section.reveal.active .owner-card {
  animation: ownerFloatIn 0.9s ease forwards;
}

@keyframes ownerFloatIn {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.owner-photo {
  position: relative;
}

.trust-badge,
.certified-badge {
  position: absolute;
  z-index: 5;
  border-radius: 999px;
  font-weight: 950;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(76, 201, 255, 0.45);
  box-shadow: 0 0 28px rgba(76, 201, 255, 0.35);
}

.trust-badge {
  top: 18px;
  left: 18px;
  padding: 11px 16px;
  background: rgba(2, 7, 17, 0.82);
  color: #ffffff;
  font-size: 0.9rem;
}

.certified-badge {
  right: 18px;
  bottom: 18px;
  padding: 12px 17px;
  background: linear-gradient(135deg, rgba(122,0,0,0.9), rgba(225,6,0,0.9));
  color: #020711;
  font-size: 0.88rem;
  animation: badgeGlow 2.2s ease-in-out infinite;
}

@keyframes badgeGlow {
  0%, 100% {
    box-shadow: 0 0 24px rgba(76, 201, 255, 0.35);
  }

  50% {
    box-shadow: 0 0 46px rgba(76, 201, 255, 0.75);
  }
}

.owner-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  pointer-events: none;
  box-shadow:
    inset 0 0 45px rgba(76, 201, 255, 0.2),
    0 0 34px rgba(29, 155, 255, 0.2);
}

@media (max-width: 520px) {
  .trust-badge,
  .certified-badge {
    font-size: 0.72rem;
    padding: 9px 11px;
  }
}

.data-line {
  position: relative;
  height: 2px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
  border-radius: 999px;
}

.data-line::after {
  content: "";
  position: absolute;
  left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #4cc9ff, transparent);
  animation: dataFlow 2s linear infinite;
}

@keyframes dataFlow {
  0% { left: -40%; }
  100% { left: 100%; }
}

.glow-text {
  color: #4cc9ff;
  text-shadow: 0 0 10px #4cc9ff, 0 0 20px #4cc9ff;
  animation: flicker 2.5s infinite;
}

@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 100% {
    opacity: 1;
  }

  20%, 24%, 55% {
    opacity: 0.4;
  }
}

.btn:active,
.floating-schedule:active {
  transform: scale(0.97);
  box-shadow: 0 0 20px rgba(225,6,0,0.3);
}

@media (max-width: 768px) {
  .floating-schedule {
    left: 12px;
    right: 12px;
    bottom: 18px;
    font-size: 1.1rem;
    padding: 18px;
    border-radius: 16px;
  }
}

/* ===== MOBILE CALL BAR ===== */

.mobile-call-bar {
  display: none;
}

@media (max-width: 768px) {
.mobile-call-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
  }

.mobile-call-bar {
  bottom: 10px;
  left: 12px;
  right: 12px;
  }

.mobile-call-bar a {
  border-radius: 14px;
  }
}

/* ===== FIX MOBILE BUTTON OVERLAP ===== */

@media (max-width: 768px) {
  .floating-schedule {
    bottom: 72px !important;
    left: 12px;
    right: 12px;
    padding: 13px 18px;
    font-size: 0.95rem;
    border-radius: 14px;
    text-align: center;
  }

  .mobile-call-bar {
    bottom: 10px !important;
    left: 12px;
    right: 12px;
  }

  .mobile-call-bar a {
    padding: 13px 18px;
    border-radius: 14px;
    font-size: 0.95rem;
  }
}

/* ===== PRIORITIZE CALL BUTTON ===== */

@media (max-width: 768px) {
  
  /* CALL BUTTON HIGHER */
.mobile-call-bar a {
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 1rem;
}

.mobile-call-bar {
  bottom: 110px !important;
  left: 12px;
  right: 12px;
}

/* SCHEDULE BUTTON LOWER */
.floating-schedule {
  bottom: 10px !important;
  left: 12px;
  right: 12px;
  padding: 12px 18px;
  font-size: 0.9rem;
  border-radius: 14px;
  text-align: center;
}

/* ===== MOBILE CENTER FIX ===== */

@media (max-width: 768px) {

  .split-section,
  .about-section,
  .owner-card {
    grid-template-columns: 1fr !important;
    text-align: center;
    justify-items: center;
  }

  .section-copy,
  .about-copy,
  .owner-copy {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
  }

  .image-card,
  .about-visual,
  .owner-photo {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

}

/* ===== FORCE MOBILE CENTER ALIGNMENT ===== */

@media (max-width: 768px) {
  body {
    text-align: center;
  }

  .section,
  .hero-section,
  .newsletter-section {
    width: 100%;
    max-width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .split-section,
  .about-section,
  .owner-card,
  .services-grid,
  .why-grid,
  .reviews-grid,
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr !important;
    place-items: center !important;
  }

  .section-copy,
  .about-copy,
  .owner-copy,
  .center-heading,
  .newsletter-content,
  .hero-content {
    width: 100%;
    max-width: 520px;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .image-card,
  .about-visual,
  .owner-photo,
  .hero-tech-panel {
    width: 100%;
    max-width: 520px;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-actions {
    justify-content: center;
  }
}

/* ===== FINAL MOBILE LAYOUT FIX ===== */

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero-bg {
    left: 0 !important;
    right: 0 !important;
    inset: 90px 0 40px 0 !important;
    border-radius: 0 0 28px 28px;
  }

  .hero-section,
  .section,
  .split-section,
  .about-section,
  .owner-section,
  .services-section,
  .why-section,
  .reviews-section,
  .contact-section,
  .newsletter-section {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    box-sizing: border-box;
  }

  .split-section,
  .about-section,
  .owner-card {
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
  }

  .section-copy,
  .about-copy,
  .owner-copy,
  .center-heading,
  .hero-content,
  .newsletter-content {
    width: 100% !important;
    max-width: 520px !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .image-card,
  .about-visual,
  .owner-photo,
  .hero-tech-panel {
    width: 100% !important;
    max-width: 520px !important;
    margin: 0 auto !important;
  }

  .hero-actions {
    justify-content: center !important;
  }

  .hero-stats {
    width: 100% !important;
    max-width: 520px !important;
    margin: 0 auto !important;
  }
}

/* ===== SHRINK MOBILE SECTIONS ===== */

@media (max-width: 768px) {
  .section {
    padding: 45px 16px !important;
  }

  .services-grid {
    gap: 14px !important;
  }

  .service-card {
    padding: 16px !important;
    border-radius: 20px !important;
  }

  .service-icon {
    width: 42px !important;
    height: 42px !important;
    font-size: 0.9rem !important;
    margin-bottom: 14px !important;
  }

  .service-card h3 {
    font-size: 1.15rem !important;
    margin-bottom: 8px !important;
  }

  .service-card p {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0 !important;
  }
}

/* ===== MOBILE SERVICE CARDS COMPACT ===== */

@media (max-width: 768px) {
  .services-section {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }

  .center-heading {
    margin-bottom: 22px !important;
  }

  .service-card {
    padding: 18px !important;
    min-height: auto !important;
  }

  .service-card p {
    display: none;
  }

  .service-icon {
    margin-bottom: 10px !important;
  }

  .services-grid {
    gap: 12px !important;
  }
}

/* ===== MOBILE HERO PANEL COMPACT ===== */

@media (max-width: 768px) {
  .hero-tech-panel h3,
  .hero-tech-panel .status-row {
    display: none !important;
  }

  .hero-tech-panel {
    padding: 18px !important;
    max-width: 360px !important;
    margin: 0 auto !important;
  }

  .scan-line {
    height: 110px !important;
    margin-bottom: 0 !important;
  }
}

/* ===== MOBILE SERVICES 2-COLUMN GRID ===== */

@media (max-width: 768px) {
  .services-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .service-card {
    width: 100% !important;
    padding: 16px 12px !important;
    border-radius: 20px !important;
    text-align: center !important;
    min-height: 135px !important;
  }

  .service-icon {
    width: 40px !important;
    height: 40px !important;
    margin: 0 auto 10px !important;
    font-size: 0.85rem !important;
  }

  .service-card h3 {
    font-size: 0.95rem !important;
    line-height: 1.2 !important;
    margin: 0 !important;
  }

  .service-card p {
    display: none !important;
  }
}

/* ===== MOBILE CONTACT SECTION CLEAN ===== */

@media (max-width: 768px) {

  .contact-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 16px !important;
  }

  .contact-card {
    width: 100% !important;
    max-width: 360px !important;
    margin: 0 auto !important;
    padding: 20px !important;
    border-radius: 22px !important;
    text-align: center !important;
  }

  .contact-card h3 {
    font-size: 0.85rem !important;
    letter-spacing: 1px;
  }

  .contact-card p {
    font-size: 1rem !important;
  }

}

/* ===== FIX SERVICE CARD SPACING ===== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px; /* spacing between ALL cards */
}

.service-card {
  height: 100%; /* makes all cards equal height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* ===== MOBILE SERVICE GRID FIX ===== */

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .service-card {
    min-height: 140px;
  }
}

/* ===== FINAL SERVICES SPACING FIX ===== */

.services-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 22px !important;
  align-items: stretch !important;
}

.service-card {
  position: relative !important;
  height: auto !important;
  min-height: 220px !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
}

/* mobile */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }

  .service-card {
    min-height: 145px !important;
    padding: 14px 10px !important;
    margin: 0 !important;
  }
}

/* ===== MATCH LOGO ENERGY: VEGAS TECH RED ===== */

body {
  background:
    radial-gradient(circle at top left, rgba(225, 6, 0, 0.13), transparent 34%),
    radial-gradient(circle at bottom right, rgba(122, 0, 0, 0.18), transparent 36%),
    #000000 !important;
}

/* red tech grid */
.grid-overlay {
  background-image:
    linear-gradient(rgba(225, 6, 0, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(225, 6, 0, 0.045) 1px, transparent 1px) !important;
}

/* red hero glow */
.hero-content h1 span,
.section-label,
.status-row strong,
.contact-card span,
.review-card h4 {
  color: #e10600 !important;
  text-shadow: 0 0 14px rgba(225, 6, 0, 0.35);
}

/* red buttons */
.btn-primary,
.header-call,
.floating-schedule,
.mobile-call-bar a,
.newsletter-form button,
.service-icon {
  background: linear-gradient(135deg, #ff2a22, #9b0000) !important;
  color: #ffffff !important;
  box-shadow: 0 0 28px rgba(225, 6, 0, 0.45) !important;
}

/* red borders/glass */
.service-card,
.why-card,
.review-card,
.contact-card,
.hero-tech-panel,
.owner-card,
.newsletter-section {
  border-color: rgba(225, 6, 0, 0.28) !important;
}

/* red scan line */
.scan-line::after {
  background: #e10600 !important;
  box-shadow: 0 0 22px rgba(225, 6, 0, 0.85) !important;
}

/* red moving data line */
.data-line::after {
  background: linear-gradient(90deg, transparent, #ff2a22, transparent) !important;
}

/* logo-style hover glow */
.service-card:hover,
.why-card:hover,
.review-card:hover,
.contact-card:hover {
  border-color: rgba(225, 6, 0, 0.65) !important;
  box-shadow: 0 0 42px rgba(225, 6, 0, 0.22) !important;
}

/* pulse dot red */
.live-dot {
  background: #e10600 !important;
  box-shadow: 0 0 0 8px rgba(225, 6, 0, 0.18) !important;
}

/* ===== PREMIUM RED THEME BASE ===== */

:root {
  --blue: #e10600;
  --blue-2: #7a0000;
  --glow: 0 0 28px rgba(225, 6, 0, 0.35);
}

body {
  background:
    radial-gradient(circle at 20% 10%, rgba(225, 6, 0, 0.08), transparent 35%),
    radial-gradient(circle at 80% 90%, rgba(225, 6, 0, 0.08), transparent 35%),
    #000000 !important;

  color: #ffffff;
}

/* ===== BUTTONS & PRIMARY ACTIONS ===== */

.btn-primary,
.floating-schedule,
.mobile-call-bar a,
.header-call {
  background: linear-gradient(135deg, #e10600, #7a0000) !important;
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(225, 6, 0, 0.35) !important;
  border: none !important;
}

/* ===== CARDS ===== */

.service-card,
.why-card,
.review-card,
.contact-card,
.owner-card,
.hero-tech-panel {
  border: 1px solid rgba(225, 6, 0, 0.18) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  box-shadow: none !important;
}

.service-card:hover,
.why-card:hover,
.review-card:hover,
.contact-card:hover {
  border-color: rgba(225, 6, 0, 0.45) !important;
  box-shadow: 0 0 30px rgba(225, 6, 0, 0.18) !important;
}

/* ===== TEXT ACCENTS ===== */

.section-label,
.hero-content h1 span,
.contact-card span,
.review-card h4 {
  color: #e10600 !important;
}

.hero-content h1 span {
  text-shadow: 0 0 10px rgba(225, 6, 0, 0.35);
}

/* ===== TECH EFFECTS ===== */

.scan-line::after {
  background: #e10600 !important;
  box-shadow: 0 0 18px rgba(225, 6, 0, 0.8) !important;
}

.data-line::after {
  background: linear-gradient(90deg, transparent, #e10600, transparent) !important;
}

/* ===== BORDERS ===== */

.service-card,
.contact-card,
.owner-card,
.hero-tech-panel {
  border-color: rgba(225, 6, 0, 0.2) !important;
}

/* ===== SUBTLE VEGAS NEON ===== */

.hero-content h1 {
  letter-spacing: 0.5px;
}

.section {
  background: linear-gradient(
    180deg,
    rgba(225, 6, 0, 0.02),
    transparent
  );
}

/* ===== FINAL PREMIUM POLISH: HEADER ===== */

.main-header {
  background: rgba(0, 0, 0, 0.78) !important;
  border-bottom: 1px solid rgba(225, 6, 0, 0.18) !important;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
}

.site-logo {
  background: transparent !important;
  box-shadow: 0 0 22px rgba(225, 6, 0, 0.32) !important;
}

.nav-links a:hover {
  color: #e10600 !important;
  text-shadow: 0 0 12px rgba(225, 6, 0, 0.35) !important;
}

/* ===== FINAL PREMIUM POLISH: HERO ===== */

.hero-bg {
  background:
    linear-gradient(to right, rgba(0,0,0,0.96), rgba(0,0,0,0.72)),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1600&q=80") !important;
}

.hero-tech-panel {
  background:
    linear-gradient(180deg, rgba(225,6,0,0.10), rgba(255,255,255,0.035)) !important;
}

.hero-badge {
  border-color: rgba(225, 6, 0, 0.45) !important;
  background: rgba(225, 6, 0, 0.10) !important;
}

/* ===== FINAL PREMIUM POLISH: CARD DEPTH ===== */

.service-card,
.why-card,
.review-card,
.contact-card {
  backdrop-filter: blur(14px);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025)) !important;
}

.service-card:hover,
.why-card:hover,
.review-card:hover,
.contact-card:hover {
  transform: translateY(-6px) scale(1.01) !important;
}

/* ===== FINAL PREMIUM POLISH: MOBILE ===== */

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.7rem !important;
    line-height: 1.02 !important;
    letter-spacing: -1px !important;
  }

  .hero-description {
    font-size: 0.96rem !important;
    line-height: 1.55 !important;
  }

  .section {
    padding-top: 42px !important;
    padding-bottom: 42px !important;
  }

  .center-heading h2 {
    font-size: 2rem !important;
  }

  .service-card {
    box-shadow: 0 0 18px rgba(225, 6, 0, 0.08) !important;
  }
}

/* ===== FINAL PREMIUM POLISH: MOBILE ACTIONS ===== */

@media (max-width: 768px) {
  .mobile-call-bar a {
    background: linear-gradient(135deg, #ff1a14, #8b0000) !important;
    color: #ffffff !important;
    box-shadow: 0 0 24px rgba(225, 6, 0, 0.45) !important;
    letter-spacing: 0.4px;
  }

  .floating-schedule {
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(225, 6, 0, 0.35) !important;
    color: #ffffff !important;
    box-shadow: 0 0 18px rgba(225, 6, 0, 0.22) !important;
  }
}
