/* =========================================
   BYALL AUTOMATION — LOW VOLTAGE & INTEGRATED SYSTEMS
   low-voltage.css
   ========================================= */

/* ── HERO OVERRIDE ── */

.low-hero {
  background:
    linear-gradient(105deg, rgba(2,11,26,.98) 0%, rgba(10,22,40,.90) 40%, rgba(0,0,0,.72) 100%),
    url('https://byallautomation.com/wp-content/uploads/2026/04/BA-hero2-2.jpg') center/cover no-repeat;
}

/* ── LOW CARDS ── */

.low-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15,23,42,.07);
  border: 1px solid rgba(26,159,224,.16);
  transition: transform var(--t-mid, .3s) cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow var(--t-mid, .3s) ease;
  position: relative;
}

.low-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 64px rgba(15,23,42,.14), 0 0 0 1px rgba(26,159,224,.22);
}

.low-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  display: block;
}

.low-card:hover img { transform: scale(1.05); }

.low-card-content {
  padding: 34px;
  padding-top: 48px;
  position: relative;
}

.low-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, #1a9fe0, #1a6fc4);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #ffffff;
  position: absolute;
  top: -34px;
  left: 32px;
  box-shadow: 0 12px 28px rgba(26,159,224,.32);
  transition: transform var(--t-mid, .3s) cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow var(--t-mid, .3s) ease;
}

.low-card:hover .low-icon {
  transform: scale(1.08) rotate(4deg);
  box-shadow: 0 18px 36px rgba(26,159,224,.40);
}

.low-card-content h3 {
  font-family: var(--font-display, sans-serif);
  font-size: 24px;
  font-weight: 700;
  margin: 16px 0 14px;
  color: #0f172a;
  letter-spacing: -0.3px;
  line-height: 1.25;
}

.low-card-content p {
  color: #64748b;
  line-height: 1.78;
  font-size: 15px;
  font-weight: 300;
}

/* ── FEATURE SECTION ── */

.low-feature {
  background: #f8fafc;
}

/* ── BENEFITS SECTION ── */

.low-benefits {
  background:
    radial-gradient(ellipse at 15% 50%, rgba(26,159,224,.20), transparent 45%),
    radial-gradient(ellipse at 85% 20%, rgba(245,197,24,.12), transparent 40%),
    linear-gradient(145deg, #020b1a 0%, #0d1b3e 55%, #0a2a50 100%);
  color: #ffffff;
  padding: 96px 24px;
}

.low-benefits .section-title {
  color: #ffffff !important;
}

.low-benefits .section-text {
  color: rgba(255,255,255,.75) !important;
}

.low-benefit-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 28px;
  padding: 44px 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  transition: transform var(--t-mid, .3s) cubic-bezier(0.34, 1.56, 0.64, 1),
              background var(--t-mid, .3s) ease,
              border-color var(--t-mid, .3s) ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.low-benefit-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,.09);
  border-color: rgba(26,159,224,.35);
}

.low-benefit-icon {
  font-size: 52px;
  color: #f5c518;
  margin-bottom: 24px;
  display: block;
  transition: transform var(--t-mid, .3s) cubic-bezier(0.34, 1.56, 0.64, 1);
}

.low-benefit-card:hover .low-benefit-icon {
  transform: scale(1.12);
}

.low-benefit-card h3 {
  font-family: var(--font-display, sans-serif);
  font-size: 22px;
  margin-bottom: 14px;
  font-weight: 700;
  color: #7dd4f8;
  letter-spacing: -0.3px;
}

.low-benefit-card p {
  color: #c8d5e4;
  line-height: 1.78;
  font-size: 15px;
  font-weight: 300;
}
/* ==========================
   LOW VOLTAGE MOBILE FIX
   ========================== */

@media (max-width:768px){

  .low-hero{
    background-position:center center;
  }

  .low-card{
    border-radius:22px !important;
  }

  .low-card img{
    height:190px !important;
  }

  .low-card-content{
    padding:28px 22px 24px !important;
    padding-top:42px !important;
  }

  .low-icon{
    width:56px !important;
    height:56px !important;
    font-size:23px !important;
    border-radius:16px !important;
    top:-28px !important;
    left:22px !important;
  }

  .low-card-content h3{
    font-size:21px !important;
    line-height:1.25 !important;
  }

  .low-card-content p{
    font-size:14px !important;
    line-height:1.65 !important;
  }

  .low-benefits{
    padding:70px 18px !important;
  }

  .low-benefit-card{
    padding:28px 22px !important;
    border-radius:22px !important;
  }

  .low-benefit-icon{
    font-size:42px !important;
    margin-bottom:18px !important;
  }

  .low-benefit-card h3{
    font-size:20px !important;
  }

  .low-benefit-card p{
    font-size:14px !important;
    line-height:1.65 !important;
  }

}