/* ===============================
   🔴 HD ELEKTRİK 2025 – ALT SAYFA ORTAK CSS
   Versiyon: HD62rev3_AltSayfa_final
   =============================== */

/* === GENEL YAPI === */
.alt-sayfa-container {
  max-width: 1200px;
  margin: 120px auto 60px auto;
  padding: 0 40px;
  color: #222;
}

/* === SAYFA BAŞLIĞI === */
.alt-sayfa-title {
  text-align: center;
  font-size: 1.5rem;
  color: #e60000;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.alt-sayfa-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #e60000;
  margin: 8px auto 0 auto;
  border-radius: 2px;
}

/* === METİN BLOKLARI === */
.alt-sayfa-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
}

/* === HİZMETLER / PROJE KART GRID === */
.alt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.alt-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.alt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* === KART BAŞLIKLARI === */
.alt-card h3 {
  font-size: 1.1rem;
  color: #222;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
}

/* 🔴 Kırmızı çizgi – kurumsal imza */
.alt-card h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #e60000;
  margin: 6px auto 0 auto;
  border-radius: 2px;
}

/* === KART METNİ === */
.alt-card p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 10px;
}

/* === GÖRSEL BLOKLAR === */
.alt-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* === BUTON / LİNK === */
.alt-btn {
  display: inline-block;
  margin-top: 15px;
  color: #e60000;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.alt-btn:hover {
  color: #000;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .alt-sayfa-container {
    padding: 0 20px;
  }
}

@media (max-width: 600px) {
  .alt-grid {
    grid-template-columns: 1fr;
  }
  .alt-card {
    padding: 20px;
  }
}
