/* ==============================
   ARMA BigBag • Modern Hakkımızda
   ============================== */

:root {
  --arma-blue: #002b45;
  --arma-orange: #e47a27;
  --bg-light: #f8fafc;
  --text-dark: #1e1e1e;
  --text-muted: #6c6c6c;
  --radius: 18px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  background: var(--bg-light);
  color: var(--text-dark);
}

/* Ana Alan */
.about-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1250px;
  margin: 0 auto;
  padding: 100px 6%;
}

@media (max-width: 992px) {
  .about-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px;
  }
}

/* Sol taraf (metin) */
.about-text {
  background: #fff;
  padding: 60px 50px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.about-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, var(--arma-orange), var(--arma-blue));
}

.about-text h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--arma-blue);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-text h2 span {
  color: var(--arma-orange);
}

.about-text p {
  color: var(--text-dark);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-text .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--arma-orange);
  text-decoration: none;
  transition: 0.3s;
}

.about-text .read-more:hover {
  transform: translateX(4px);
  color: var(--arma-blue);
}

/* Sağ taraf (görsel veya kart alanı) */
.about-visual {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f0f3f8 100%);
  border-radius: var(--radius);
  overflow:
/* Görselli Kartlı Alan */
.about-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 10px;
}

@media (max-width: 768px) {
  .about-cards {
    grid-template-columns: 1fr;
  }
}

.about-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 250px;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(228, 122, 39, 0.25);
}

.about-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  transition: 0.5s ease;
}

.about-card:hover img {
  opacity: 0.7;
  transform: scale(1.05);
}

.about-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.1));
  z-index: 1;
}

.about-card .content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 24px 22px;
}

.about-card .icon {
  font-size: 28px;
  color: #e47a27;
  background: #ffffff;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 14px;
}

.about-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #f1f1f1;
}
/* ===== Sağ Taraf: 2x2 Görselli Kartlar ===== */

.about-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .about-cards {
    grid-template-columns: 1fr;
  }
}

.about-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  min-height: 240px;
  display: flex;
  align-items: flex-end;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(228, 122, 39, 0.25);
}

.about-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  transition: 0.5s ease;
}

.about-card:hover img {
  opacity: 0.7;
  transform: scale(1.05);
}

.about-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.75));
  z-index: 1;
}

.about-card .content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 26px 24px;
}

.about-card .icon {
  width: 54px;
  height: 54px;
  background: #fff;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #e47a27;
  font-size: 22px;
  margin-bottom: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.about-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-card p {
  font-size: 0.95rem;
  color: #f1f1f1;
  line-height: 1.6;
}
