/* =========================================
   BYALL AUTOMATION — LOW VOLTAGE & INTEGRATED SYSTEMS
   low-voltage.css
   ========================================= */

/* ── HERO ── */

.low-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #020b1a;
}

.low-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://byallautomation.com/wp-content/uploads/2026/04/BA-hero2-2.jpg') center/cover no-repeat;
  z-index: 0;
}

.low-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(2,11,26,.94)  0%,
    rgba(10,22,40,.86) 40%,
    rgba(13,27,62,.78) 70%,
    rgba(13,27,62,.70) 100%
  );
  z-index: 1;
}

.low-hero .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 190px 24px 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Kicker */
.low-hero .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,159,224,.12);
  border: 1px solid rgba(26,159,224,.30);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 28px;
}

/* Hero title */
.low-hero .hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 82px);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 24px;
  display: block;
  width: 100%;
  text-align: center;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.low-hero .hero-title .gradient {
  display: inline;
  background: linear-gradient(105deg, #ffffff 0%, #7dd4f8 40%, #1a9fe0 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.low-hero .hero-title .white {
  display: inline;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  text-shadow: 0 4px 24px rgba(0,0,0,.55);
}

.low-hero .hero-title .gold {
  display: inline;
  color: var(--gold) !important;
  -webkit-text-fill-color: var(--gold);
  text-shadow: 0 4px 28px rgba(245,197,24,.35);
}

/* Hero desc */
.low-hero .hero-desc {
  max-width: 760px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.72;
  color: rgba(255,255,255,.84);
  font-weight: 300;
  text-shadow: 0 2px 14px rgba(0,0,0,.55);
}

/* Hero buttons */
.low-hero .hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── LOW VOLTAGE CARDS (resimli) ── */

.low-card {
  background: #ffffff;
  border: 1px solid rgba(26,159,224,.16);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15,23,42,.06);
  transition: transform var(--t-mid) var(--ease-spring),
              box-shadow var(--t-mid) var(--ease-out),
              border-color var(--t-mid);
  position: relative;
}

.low-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  opacity: 0;
  transition: opacity var(--t-mid);
  z-index: 1;
}

.low-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(15,23,42,.13), var(--shadow-blue);
  border-color: rgba(26,159,224,.28);
}

.low-card:hover::before { opacity: 1; }

.low-card > img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .7s var(--ease-out);
}

.low-card:hover > img { transform: scale(1.04); }

.low-card-content {
  padding: 28px 30px 32px;
}

.low-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(26,159,224,.12), rgba(26,159,224,.06));
  border: 1px solid rgba(26,159,224,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--blue);
  margin-bottom: 18px;
  transition: transform var(--t-mid) var(--ease-spring);
}

.low-icon i { color: var(--blue); }

.low-card:hover .low-icon {
  transform: scale(1.1) rotate(4deg);
}

.low-card-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0f172a;
  letter-spacing: -0.3px;
  line-height: 1.25;
}

.low-card-content p {
  font-size: 14.5px;
  line-height: 1.72;
  color: #64748b;
  font-weight: 300;
}

/* ── 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,.72) !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) var(--ease-spring),
              background var(--t-mid),
              border-color var(--t-mid);
  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: var(--gold);
  margin-bottom: 24px;
  display: block;
  transition: transform var(--t-mid) var(--ease-spring);
}

.low-benefit-card:hover .low-benefit-icon {
  transform: scale(1.12);
}

.low-benefit-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #7dd4f8;
  letter-spacing: -0.3px;
}

.low-benefit-card p {
  color: rgba(255,255,255,.70);
  line-height: 1.78;
  font-size: 15px;
  font-weight: 300;
}

/* ── MOBİL ── */

@media (max-width: 768px) {

  .low-hero .hero-content {
    padding: 150px 18px 80px;
  }

  .low-hero .hero-title {
    font-size: clamp(32px, 9vw, 48px) !important;
    letter-spacing: -1px;
  }

  .low-hero .hero-desc {
    font-size: 15px;
    line-height: 1.62;
    margin-bottom: 30px;
  }

  .low-hero .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .low-hero .hero-buttons .btn-primary,
  .low-hero .hero-buttons .btn-secondary {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .low-card > img { height: 180px; }

  .low-card-content {
    padding: 22px 22px 26px;
  }

  .low-card-content h3 { font-size: 18px; }
  .low-card-content p  { font-size: 14px; }

  .low-benefits { padding: 64px 18px; }

  .low-benefit-card {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .low-benefit-icon {
    font-size: 42px;
    margin-bottom: 18px;
  }

  .low-benefit-card h3 { font-size: 19px; }
  .low-benefit-card p  { font-size: 14px; line-height: 1.65; }
}

@media (max-width: 480px) {
  .low-hero .hero-title {
    font-size: 28px !important;
  }

  .low-card > img { height: 160px; }
}