/* ============================================================
   IFix Phones US - Main Stylesheet
   Design System: Dark Blue / Electric Blue / Trust Green
   ============================================================ */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

/* === CSS VARIABLES === */
:root {
  --dark-blue: #0F172A;
  --electric-blue: #2563EB;
  --blue-hover: #1D4ED8;
  --blue-light: #EFF6FF;
  --blue-mid: #DBEAFE;
  --light-gray: #F8FAFC;
  --mid-gray: #E2E8F0;
  --text-muted: #64748B;
  --text-body: #334155;
  --white: #FFFFFF;
  --trust-green: #16A34A;
  --green-light: #DCFCE7;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 10px 40px rgba(15, 23, 42, 0.14);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET & BASE === */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip; /* stops horizontal scroll without breaking position:sticky */
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  color: var(--dark-blue);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

/* === TYPOGRAPHY SCALE === */
.display-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--electric-blue);
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 0;
}

/* === BUTTONS === */
.btn-primary-brand {
  background: var(--electric-blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary-brand:hover {
  background: var(--blue-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-outline-brand {
  background: transparent;
  color: var(--electric-blue);
  border: 2px solid var(--electric-blue);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1.65rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-brand:hover {
  background: var(--electric-blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white-brand {
  background: var(--white);
  color: var(--electric-blue);
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.btn-white-brand:hover {
  background: var(--blue-light);
  color: var(--electric-blue);
  transform: translateY(-2px);
}

.btn-green-brand {
  background: var(--trust-green);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.btn-green-brand:hover {
  background: #15803D;
  color: var(--white);
  transform: translateY(-2px);
}

/* === NAVBAR === */
#mainNav {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

#mainNav.scrolled {
  box-shadow: 0 4px 30px rgba(15, 23, 42, 0.1);
  border-bottom-color: transparent;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-logo {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Desktop nav links */
.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  color: #4a5568 !important;
  padding: 0.55rem 0.75rem !important;
  border-radius: 0;
  position: relative;
  background: transparent !important;
  transition: color 0.2s ease;
  letter-spacing: 0.01em;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: -1px;
  height: 2px;
  background: var(--electric-blue);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.nav-link:hover {
  color: var(--electric-blue) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--electric-blue) !important;
  font-weight: 600;
}

/* CTA button */
.nav-cta-btn {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm) !important;
  padding: 0.5rem 1.25rem !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.38);
  letter-spacing: 0.01em;
  transition: all 0.22s ease !important;
}

.nav-cta-btn::after {
  display: none !important;
}

.nav-cta-btn:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.48) !important;
  transform: translateY(-1px);
}

.nav-cta-btn.active {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%) !important;
  color: var(--white) !important;
}

/* Hamburger toggler */
.navbar-toggler {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  outline: none;
  border-color: var(--electric-blue);
}

.navbar-toggler:hover {
  border-color: var(--electric-blue);
  background: var(--blue-light);
}

.nav-icon-bars,
.nav-icon-close {
  font-size: 1rem;
  color: var(--dark-blue);
  line-height: 1;
}

.nav-icon-close {
  display: none;
}

.navbar-toggler:not(.collapsed) .nav-icon-bars {
  display: none;
}

.navbar-toggler:not(.collapsed) .nav-icon-close {
  display: block;
}

/* Mobile menu */
@media (max-width: 991.98px) {
  /* Hide top info bar — saves space, navbar occupies full top */
  .top-bar {
    display: none;
  }

  /* Fixed positioning: unaffected by overflow on parents, logo never moves */
  #mainNav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }

  /* Compensate for fixed navbar height (~62px) */
  body {
    padding-top: 62px;
  }

  .navbar-collapse {
    border-top: 2px solid var(--electric-blue);
    background: var(--white);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.13);
    padding-bottom: 0.75rem;
  }

  .navbar-nav {
    padding: 0.2rem 0;
  }

  .nav-link {
    padding: 0.8rem 1.5rem !important;
    border-radius: 0 !important;
    font-size: 0.925rem !important;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s ease, color 0.15s ease, padding 0.15s ease !important;
  }

  .nav-link::after {
    display: none !important;
  }

  .nav-link:hover,
  .nav-link.active {
    background: var(--blue-light) !important;
    color: var(--electric-blue) !important;
    padding-left: 1.85rem !important;
  }

  .nav-cta-btn {
    display: block;
    text-align: center;
    margin: 0.75rem 1rem 0.25rem !important;
    padding: 0.8rem 1.25rem !important;
    border-radius: var(--radius-sm) !important;
    border-bottom: none !important;
    transform: none !important;
  }

  .nav-cta-btn:hover {
    padding-left: 1.25rem !important;
    transform: none !important;
  }
}

/* Top info bar */
.top-bar {
  background: var(--dark-blue);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  padding: 0.45rem 0;
  font-weight: 400;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.8);
}

.top-bar a:hover {
  color: var(--white);
}

.top-bar .divider {
  opacity: 0.3;
  margin: 0 0.5rem;
}

/* === HERO SECTIONS === */
.hero-section {
  background: linear-gradient(135deg, var(--dark-blue) 0%, #1e3a5f 60%, #1a2f5e 100%);
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 40%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(37, 99, 235, 0.4);
  color: #93C5FD;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-headline .text-accent {
  color: #60A5FA;
}

.hero-subheadline {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 580px;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  text-align: left;
}

.hero-stat .stat-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat .stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  margin-top: 0.2rem;
}

/* Hero device illustration */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-device-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 340px;
}

.hero-device-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.hero-device-card:hover {
  background: rgba(37, 99, 235, 0.25);
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-4px);
}

.hero-device-card i {
  font-size: 1.8rem;
  color: #93C5FD;
  display: block;
  margin-bottom: 0.4rem;
}

.hero-device-card span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  display: block;
}

/* === SECTION SPACING === */
.section-pad {
  padding: 5rem 0;
}

.section-pad-sm {
  padding: 3.5rem 0;
}

.section-head {
  margin-bottom: 3rem;
}

/* === SERVICE CARDS === */
.service-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  height: 100%;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--electric-blue);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.service-card:hover {
  border-color: var(--electric-blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.service-icon i {
  font-size: 1.4rem;
  color: var(--electric-blue);
}

.service-card:hover .service-icon {
  background: var(--electric-blue);
}

.service-card:hover .service-icon i {
  color: var(--white);
}

.service-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark-blue);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

/* Sub-service list */
.sub-service-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}

.sub-service-list li {
  font-size: 0.83rem;
  color: var(--text-muted);
  padding: 0.2rem 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.sub-service-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--electric-blue);
  border-radius: 50%;
  flex-shrink: 0;
}

/* === WHY CHOOSE US === */
.trust-section {
  background: var(--dark-blue);
}

.trust-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--transition);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.trust-card:hover {
  background: rgba(37, 99, 235, 0.50);
  border-color: rgba(37, 99, 235, 0.5);
  transform: translateY(-4px);
}

.trust-card .trust-icon {
  width: 60px;
  height: 60px;
  background: rgba(37, 99, 235, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.trust-card .trust-icon i {
  font-size: 1.6rem;
  color: #60A5FA;
}

.trust-card .trust-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.trust-card .trust-label {
  font-size: 0.92rem;
  color: #ffffff;
  font-weight: 600;
}

.trust-card .trust-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 0.35rem;
  line-height: 1.6;
}

/* === GOOGLE REVIEWS === */
.reviews-section {
  background: var(--green-light);
}

.google-review-cta {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.stars-display {
  color: #F59E0B;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--mid-gray);
  height: 100%;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testimonial-card .stars {
  color: #F59E0B;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.testimonial-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--electric-blue);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark-blue);
}

.author-location {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* === PROCESS STEPS === */
.process-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--mid-gray);
  margin-bottom: 1rem;
  transition: var(--transition);
}

.process-step:hover {
  border-color: var(--electric-blue);
  box-shadow: var(--shadow-sm);
}

.step-number {
  width: 42px;
  height: 42px;
  background: var(--electric-blue);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.step-content h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--dark-blue);
}

.step-content p {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin: 0;
}

/* === CTA SECTION === */
.cta-section {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.68) 0%, rgba(29, 78, 216, 0.68) 100%),
    url('/images/cta-section.png') center/cover no-repeat;
  color: var(--white);
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* === MAPS SECTION === */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

.map-embed iframe {
  border: 0;
  width: 100%;
  flex: 1;
  min-height: 380px;
  display: block;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--mid-gray);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--mid-gray);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.ci-icon {
  width: 38px;
  height: 38px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci-icon i {
  color: var(--electric-blue);
  font-size: 0.95rem;
}

.ci-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ci-value {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--dark-blue);
}

.ci-value a {
  color: var(--dark-blue);
}

.ci-value a:hover {
  color: var(--electric-blue);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 0.3rem 0;
}

.hours-row .day {
  font-weight: 500;
  color: var(--dark-blue);
}

.hours-row .time {
  color: var(--text-muted);
}

.hours-row .closed {
  color: #EF4444;
  font-weight: 600;
}

/* === CONTACT FORM === */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--mid-gray);
}

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 0.35rem;
}

.form-control,
.form-select {
  border: 1.5px solid var(--mid-gray);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  font-size: 0.92rem;
  color: var(--text-body);
  transition: var(--transition);
  background: var(--white);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--electric-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
  outline: none;
}

/* === SOFTWARE PREVIEW === */
.software-preview-section {
  background: var(--light-gray);
}

.software-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--blue-light);
  color: var(--electric-blue);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  border: 1px solid var(--blue-mid);
}

.software-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

/* === PORTFOLIO === */
.portfolio-filter .filter-btn {
  background: var(--white);
  border: 1.5px solid var(--mid-gray);
  color: var(--text-body);
  border-radius: 100px;
  padding: 0.45rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.portfolio-filter .filter-btn:hover,
.portfolio-filter .filter-btn.active {
  background: var(--electric-blue);
  border-color: var(--electric-blue);
  color: var(--white);
}

.portfolio-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--mid-gray);
  transition: var(--transition);
  height: 100%;
}

.portfolio-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.portfolio-card-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.portfolio-card-img.repair-bg {
  background: var(--blue-light);
}

.portfolio-card-img.web-bg {
  background: #F0FDF4;
}

.portfolio-card-img.software-bg {
  background: #FFF7ED;
}

.portfolio-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.badge-repair {
  background: var(--blue-mid);
  color: var(--electric-blue);
}

.badge-website {
  background: #DCFCE7;
  color: #15803D;
}

.badge-software {
  background: #FEF3C7;
  color: #92400E;
}

.badge-it {
  background: #F3E8FF;
  color: #7C3AED;
}

.portfolio-card-body {
  padding: 1.25rem;
}

.portfolio-card-body h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--dark-blue);
}

.portfolio-card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* === FAQ === */
.faq-section {
  background: var(--light-gray);
}

.accordion-item {
  border: 1px solid var(--mid-gray) !important;
  border-radius: var(--radius-md) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.accordion-button {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-blue) !important;
  background: var(--white) !important;
  padding: 1.1rem 1.25rem;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--electric-blue) !important;
  background: var(--blue-light) !important;
}

.accordion-button::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232563EB'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 1rem 1.25rem;
  line-height: 1.7;
  background: var(--white);
}

/* === ABOUT PAGE === */
.about-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-icon i {
  color: var(--electric-blue);
  font-size: 1.1rem;
}

.about-feature h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--dark-blue);
}

.about-feature p {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin: 0;
}

.mission-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--mid-gray);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.mission-card .mission-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.mission-icon.blue-bg {
  background: var(--blue-light);
  color: var(--electric-blue);
}

.mission-icon.green-bg {
  background: var(--green-light);
  color: var(--trust-green);
}

/* === FOOTER === */
footer {
  background: var(--dark-blue);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 0;
}

footer .footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo {
  height: 80px;
  width: auto;
  display: block;
}

.footer-brand .brand-icon {
  background: var(--electric-blue);
  color: var(--white);
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

footer .footer-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

footer h6 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .footer-links li {
  margin-bottom: 0.4rem;
}

footer .footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

footer .footer-links a:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.footer-contact-item i {
  color: #60A5FA;
  font-size: 0.9rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.87rem;
}

.footer-contact-item a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
  margin-top: 3rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

@media (max-width: 991.98px) {
  footer .footer-brand {
    justify-content: center;
  }
}

.social-links {
  display: flex;
  gap: 0.65rem;
  margin-top: 1rem;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--electric-blue);
  border-color: var(--electric-blue);
  color: var(--white);
}

/* === BREADCRUMBS === */
.page-hero {
  background: linear-gradient(135deg, var(--dark-blue) 0%, #1e3a5f 100%);
  padding: 3.5rem 0 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -5%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  max-width: 600px;
  margin-bottom: 0;
}

.breadcrumb {
  background: none;
  padding: 0;
  margin-bottom: 0.75rem;
}

.breadcrumb-item {
  font-size: 0.82rem;
}

.breadcrumb-item a {
  color: #93C5FD;
}

.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.3);
}

/* === REPAIR CATEGORY SECTIONS === */
.repair-category {
  margin-bottom: 3rem;
}

.repair-category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--mid-gray);
}

.repair-cat-icon {
  width: 50px;
  height: 50px;
  background: var(--blue-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.repair-cat-icon i {
  color: var(--electric-blue);
  font-size: 1.3rem;
}

.repair-cat-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin: 0;
}

.repair-cat-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.repair-sub-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition);
  height: 100%;
}

.repair-sub-card:hover {
  border-color: var(--electric-blue);
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.repair-sub-card i {
  color: var(--electric-blue);
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 22px;
}

.repair-sub-card span {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark-blue);
}

/* === ANIMATE ON SCROLL === */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === MISC === */
.divider-line {
  height: 1px;
  background: var(--mid-gray);
  margin: 0;
}

.badge-new {
  background: var(--blue-light);
  color: var(--electric-blue);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-alt {
  background: var(--light-gray);
}

/* === RESPONSIVE ADJUSTMENTS === */
@media (max-width: 992px) {
  .hero-section {
    padding: 4rem 0 3rem;
  }

  .section-pad {
    padding: 3.5rem 0;
  }

  .hero-device-grid {
    max-width: 280px;
  }
}

@media (max-width: 768px) {
  .top-bar .d-md-inline {
    display: none !important;
  }

  .hero-stats {
    gap: 1.25rem;
  }

  .hero-stat .stat-number {
    font-size: 1.3rem;
  }

  .cta-section {
    padding: 3.5rem 0;
  }

  .contact-form-card {
    padding: 1.5rem;
  }

  .google-review-cta {
    padding: 1.75rem 1.25rem;
  }

  .hero-device-grid {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 3rem 0 2.5rem;
  }

  .section-pad {
    padding: 3rem 0;
  }

  .service-card {
    padding: 1.25rem;
  }

  .contact-info-card {
    padding: 1.25rem;
  }
}

/* === UTILITY === */
.text-electric {
  color: var(--electric-blue) !important;
}

.text-trust {
  color: var(--trust-green) !important;
}

.bg-dark-blue {
  background: var(--dark-blue) !important;
}

.rounded-brand {
  border-radius: var(--radius-lg) !important;
}


/* ============================================================
   CONTACT PAGE — scoped to .cinfo-card (not .contact-info-card)
============================================================ */
.cinfo-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  transition: box-shadow 0.2s ease;
}

.cinfo-card:hover {
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
}

.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, #2563EB, #1D4ED8);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
}

.cinfo-card h3 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--electric-blue);
  margin-bottom: 0.2rem;
}

.cinfo-card a {
  font-weight: 600;
  color: var(--dark-blue);
  text-decoration: none;
  font-size: 0.95rem;
}

.cinfo-card a:hover {
  color: var(--electric-blue);
}

.cinfo-card p {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0.2rem 0 0;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.hours-table td {
  padding: 0.2rem 0.5rem 0.2rem 0;
  color: var(--dark-blue);
}

.hours-table td:first-child {
  color: #64748b;
  width: 60%;
}

.review-cta-box {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 1.5px solid #86efac;
  border-radius: 14px;
  padding: 1.5rem;
}

.social-links-light .social-link {
  background: #eef2f7;
  border-color: #dbe3ec;
  color: var(--dark-blue);
}

.social-links-light .social-link:hover {
  background: var(--electric-blue);
  border-color: var(--electric-blue);
  color: var(--white);
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(15, 23, 42, 0.1);
  height: 420px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-address-bar {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  color: var(--dark-blue);
}

.map-address-bar a {
  color: var(--dark-blue);
  font-weight: 600;
  text-decoration: none;
}

.map-address-bar a:hover {
  color: var(--electric-blue);
}

@media (max-width: 576px) {
  .map-wrapper {
    height: 280px;
  }
}


/* ============================================================
   ANIMATIONS, BACKGROUND PATTERNS & PROFESSIONAL ENHANCEMENTS
   ============================================================ */

/* === NEW KEYFRAME ANIMATIONS === */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  }

  50% {
    box-shadow: 0 6px 30px rgba(37, 99, 235, 0.65), 0 0 0 8px rgba(37, 99, 235, 0.08);
  }
}

@keyframes pulseGreen {

  0%,
  100% {
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
  }

  50% {
    box-shadow: 0 6px 30px rgba(22, 163, 74, 0.65), 0 0 0 8px rgba(22, 163, 74, 0.08);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.82);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmerSlide {
  0% {
    left: -100%;
  }

  100% {
    left: 150%;
  }
}

@keyframes spin360 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes countPop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.12);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes borderPulse {

  0%,
  100% {
    border-color: rgba(37, 99, 235, 0.35);
  }

  50% {
    border-color: rgba(37, 99, 235, 0.75);
  }
}

/* === ANIMATION UTILITY CLASSES === */
.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.zoom-in {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.zoom-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* === HERO SECTION — PHOTO + DOT GRID BACKGROUND === */
.hero-section {
  background:
    radial-gradient(circle, rgba(37, 99, 235, 0.13) 1px, transparent 1px),
    linear-gradient(135deg, rgba(15, 23, 42, 0.35) 0%, rgba(30, 58, 95, 0.56) 60%, rgba(26, 47, 94, 0.56) 100%),
    url('/images/hero-bg.png') center/cover no-repeat;
  background-size: 28px 28px, 100% 100%, cover;
}

/* === HERO DEVICE CARDS — FLOATING ANIMATION === */
.hero-device-card:nth-child(1) {
  animation: float 5s ease-in-out infinite 0s;
}

.hero-device-card:nth-child(2) {
  animation: float 5s ease-in-out infinite 0.65s;
}

.hero-device-card:nth-child(3) {
  animation: float 5s ease-in-out infinite 1.3s;
}

.hero-device-card:nth-child(4) {
  animation: float 5s ease-in-out infinite 1.95s;
}

.hero-device-card:nth-child(5) {
  animation: float 5s ease-in-out infinite 2.6s;
}

.hero-device-card:nth-child(6) {
  animation: float 5s ease-in-out infinite 3.25s;
}

.hero-device-card:hover {
  animation-play-state: paused;
  background: rgba(37, 99, 235, 0.28);
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
}

/* === HERO ENTRANCE ANIMATIONS === */
.hero-eyebrow {
  animation: fadeInDown 0.75s ease both;
}

.hero-headline {
  animation: fadeInDown 0.75s ease 0.15s both;
}

.hero-subheadline {
  animation: fadeInDown 0.75s ease 0.28s both;
}

.hero-section .d-flex.flex-wrap.gap-3 {
  animation: fadeInDown 0.75s ease 0.4s both;
}

.hero-stats {
  animation: fadeInDown 0.75s ease 0.55s both;
}

/* === BUTTON SHIMMER EFFECT === */
.btn-primary-brand,
.btn-green-brand,
.btn-white-brand {
  position: relative;
  overflow: hidden;
}

.btn-primary-brand::after,
.btn-green-brand::after,
.btn-white-brand::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-20deg);
  transition: none;
}

.btn-primary-brand:hover::after,
.btn-green-brand:hover::after,
.btn-white-brand:hover::after {
  animation: shimmerSlide 0.55s ease;
}

/* === HERO CTA — PULSE GLOW === */
.hero-section .btn-primary-brand {
  animation: pulseGlow 3.5s ease-in-out infinite;
}

.hero-section .btn-primary-brand:hover {
  animation: none;
}

/* === TRUST SECTION — PHOTO BACKGROUND === */
.trust-section {
  background:
    radial-gradient(ellipse at 15% 50%, rgba(37, 99, 235, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(37, 99, 235, 0.12) 0%, transparent 50%),
    linear-gradient(rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.72)),
    url('/images/trust-section.png') center/cover no-repeat;
}

/* trust-section already has position:relative so no override needed */

/* === REVIEWS SECTION — DOT PATTERN === */
.reviews-section {
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(22, 163, 74, 0.1) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

/* === CTA SECTION — GRID PATTERN === */
.cta-section::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* === PAGE HERO — PHOTO + DOT GRID PATTERN === */
.page-hero {
  background:
    radial-gradient(circle, rgba(37, 99, 235, 0.09) 1px, transparent 1px),
    linear-gradient(135deg, rgba(15, 23, 42, 0.21) 0%, rgba(20, 40, 100, 0.56) 100%),
    url('/images/page-hero.png') center/cover no-repeat;
  background-size: 25px 25px, 100% 100%, cover;
}

/* Override the existing ::after orb so it still shows */
.page-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -5%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

/* === SOFTWARE PREVIEW SECTION — SUBTLE RADIAL BG === */
.software-preview-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(37, 99, 235, 0.07) 0%, transparent 50%),
    radial-gradient(circle at 5% 90%, rgba(37, 99, 235, 0.05) 0%, transparent 40%),
    var(--light-gray);
}

/* === FAQ SECTION BACKGROUND === */
.faq-section {
  background:
    radial-gradient(circle at 95% 5%, rgba(37, 99, 235, 0.06) 0%, transparent 40%),
    var(--light-gray);
}

/* === SECTION ALT — ACCENT ORBS === */
.section-alt {
  position: relative;
  overflow: hidden;
}

.section-alt::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.section-alt::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* === ADDITIONAL SECTION BACKGROUNDS === */

/* Repair process section — subtle warm texture behind light content */
.repair-process-section {
  background:
    linear-gradient(rgba(248, 250, 252, 0.65), rgba(248, 250, 252, 0.65)),
    url('/images/repair-process-section.png') center/cover no-repeat;
  position: relative;
}

/* About company story section — subtle tech/workshop texture */
.about-story-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
    url('/images/about-story-section.png') center/cover no-repeat;
}

/* Reviews section background */
.reviews-section {
  background: var(--green-light);
}

/* Software services grid section */
.software-services-section {
  background:
    linear-gradient(rgba(248, 250, 252, 0.67), rgba(248, 250, 252, 0.67)),
    url('/images/software-services-section.png') center/cover no-repeat;
}

/* === PORTFOLIO CARD IMAGES — FA ICON STYLING === */
.portfolio-card-img i {
  font-size: 3.6rem;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  opacity: 0.85;
}

.portfolio-card:hover .portfolio-card-img i {
  transform: scale(1.18);
  opacity: 1;
}

.portfolio-card-img.repair-bg i {
  color: var(--electric-blue);
}

.portfolio-card-img.web-bg i {
  color: var(--trust-green);
}

.portfolio-card-img.software-bg i {
  color: #D97706;
}

.portfolio-card-img.it-bg {
  background: #F3E8FF;
}

.portfolio-card-img.it-bg i {
  color: #7C3AED;
}

/* === SERVICE CARD — ICON SPIN ON HOVER === */
.service-card:hover .service-icon i {
  animation: spin360 0.5s ease;
}

/* === TRUST CARD — ICON BOUNCE ON HOVER === */
.trust-card:hover .trust-icon i {
  animation: spin360 0.5s ease;
}

/* === PROCESS STEP NUMBER — SCALE ON HOVER === */
.step-number {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s ease;
}

.process-step:hover .step-number {
  transform: scale(1.18) rotate(-6deg);
  background: #1a45c0;
}

/* === ABOUT FEATURE ICON — SCALE ON HOVER === */
.about-feature-icon i {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-feature:hover .about-feature-icon i {
  transform: scale(1.25) rotate(-5deg);
}

/* === TESTIMONIAL CARD AVATAR GLOW === */
.author-avatar {
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
  transition: box-shadow 0.3s ease;
}

.testimonial-card:hover .author-avatar {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.45);
}

/* === STAT COUNTER POP ANIMATION === */
.stat-number.pop,
.trust-number.pop {
  animation: countPop 0.4s ease;
}

/* === SCROLL PROGRESS BAR === */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--electric-blue) 0%, #60A5FA 100%);
  z-index: 9999;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* === BACK TO TOP BUTTON === */
.back-to-top {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 46px;
  height: 46px;
  background: var(--electric-blue);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 998;
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.45);
  font-size: 1rem;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--blue-hover);
  transform: translateY(-4px);
  box-shadow: 0 8px 26px rgba(37, 99, 235, 0.55);
}

/* === NAVBAR SCROLL SHADOW === */
#mainNav.scrolled {
  box-shadow: 0 4px 28px rgba(15, 23, 42, 0.13);
}

/* === RESPONSIVE: DISABLE FLOAT ON MOBILE === */
@media (max-width: 768px) {
  .hero-device-card {
    animation: none !important;
  }

  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}


/* ============================================================
   FAQ PAGE — REDESIGN
   ============================================================ */

/* Hero search box */
.faq-hero-search {
  max-width: 580px;
  margin: 1.75rem 0 0;
  position: relative;
}

.faq-search-input {
  width: 100%;
  padding: 0.85rem 2.75rem 0.85rem 2.85rem;
  border: none;
  border-radius: 100px;
  font-size: 0.95rem;
  color: var(--dark-blue);
  font-family: var(--font-body);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.22);
  outline: none;
  transition: box-shadow 0.25s ease;
}

.faq-search-input:focus {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.28), 0 0 0 3px rgba(37, 99, 235, 0.35);
}

.faq-search-input::placeholder {
  color: #94a3b8;
}

.faq-search-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
  pointer-events: none;
}

.faq-search-clear {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--mid-gray);
  border: none;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.78rem;
  transition: all 0.2s ease;
}

.faq-search-clear:hover {
  background: var(--electric-blue);
  color: white;
}

/* Category navigation tabs */
.faq-cat-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 0.85rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-lg);
  margin-bottom: 2.5rem;
  position: sticky;
  top: 72px;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.faq-cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--mid-gray);
  background: transparent;
  color: var(--text-body);
  text-decoration: none;
  transition: all 0.2s ease;
}

.faq-cat-tab:hover,
.faq-cat-tab.active {
  background: var(--electric-blue);
  border-color: var(--electric-blue);
  color: white;
}

.faq-cat-tab .faq-tab-count {
  background: var(--mid-gray);
  color: var(--text-muted);
  border-radius: 100px;
  padding: 0 5px;
  font-size: 0.7rem;
  line-height: 1.65;
  transition: all 0.2s ease;
}

.faq-cat-tab:hover .faq-tab-count,
.faq-cat-tab.active .faq-tab-count {
  background: rgba(255, 255, 255, 0.25);
  color: white;
}

/* Controls row */
.faq-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.faq-results-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.faq-results-count strong {
  color: var(--dark-blue);
}

.faq-expand-btns {
  display: flex;
  gap: 0.45rem;
}

.faq-expand-btn {
  background: var(--white);
  border: 1.5px solid var(--mid-gray);
  border-radius: var(--radius-sm);
  padding: 0.32rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.faq-expand-btn:hover {
  border-color: var(--electric-blue);
  color: var(--electric-blue);
  background: var(--blue-light);
}

/* Category blocks */
.faq-category-block {
  margin-bottom: 3.5rem;
  scroll-margin-top: 130px;
}

/* Category header bar */
.faq-cat-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  background: linear-gradient(135deg, var(--dark-blue) 0%, #1e3a5f 100%);
  border-radius: var(--radius-lg);
  margin-bottom: 1.15rem;
  flex-wrap: wrap;
}

.faq-cat-header-icon {
  width: 46px;
  height: 46px;
  background: rgba(37, 99, 235, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-cat-header-icon i {
  font-size: 1.25rem;
  color: #93C5FD;
}

.faq-cat-header-title {
  flex: 1;
}

.faq-cat-header-title .faq-cat-sublabel {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #93C5FD;
  display: block;
  margin-bottom: 0.1rem;
}

.faq-cat-header-title h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  margin: 0;
}

.faq-cat-badge {
  background: rgba(37, 99, 235, 0.3);
  border: 1px solid rgba(37, 99, 235, 0.5);
  color: #93C5FD;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.22rem 0.7rem;
  border-radius: 100px;
  white-space: nowrap;
}

/* Accordion question icon */
.faq-q-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  flex-shrink: 0;
  transition: background 0.25s ease;
}

.faq-q-icon i {
  font-size: 0.85rem;
  color: var(--electric-blue);
}

.accordion-button:not(.collapsed) .faq-q-icon {
  background: rgba(37, 99, 235, 0.18);
}

/* No results state */
.faq-no-results {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--mid-gray);
  display: none;
}

.faq-no-results i {
  font-size: 2.5rem;
  color: var(--text-muted);
  opacity: 0.4;
  margin-bottom: 1rem;
  display: block;
}

.faq-no-results h4 {
  font-size: 1.05rem;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

.faq-no-results p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* Search highlight */
mark.faq-highlight {
  background: rgba(37, 99, 235, 0.14);
  color: var(--electric-blue);
  border-radius: 3px;
  padding: 0 2px;
  font-weight: 600;
}

/* Sidebar navigation */
.faq-sidebar-nav {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.faq-sidebar-nav-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.faq-sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius-sm);
  color: var(--text-body);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-bottom: 0.15rem;
}

.faq-sidebar-link i {
  color: var(--electric-blue);
  width: 16px;
  font-size: 0.82rem;
  flex-shrink: 0;
}

.faq-sidebar-link:hover {
  background: var(--blue-light);
  color: var(--electric-blue);
}

.faq-sidebar-link .slink-count {
  margin-left: auto;
  background: var(--blue-light);
  color: var(--electric-blue);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.1rem 0.5rem;
  border-radius: 100px;
}

/* Sidebar contact card for FAQ page */
.faq-contact-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
}

.faq-contact-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

.faq-contact-card>p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .faq-cat-tabs {
    top: 0;
    position: relative;
  }

  .faq-hero-search {
    max-width: 100%;
  }
}