/* ============================================================
   ORBIBA — Pages Upgrade CSS
   Tüm sayfalara genel tasarım iyileştirmeleri
   ============================================================ */

/* ── Page Hero ──────────────────────────────────────────────── */
.page-hero,
.page-header {
  position: relative;
  padding: 72px 0 56px;
  background: linear-gradient(135deg, #0b1220 0%, #1a2744 40%, #0d2240 100%);
  overflow: hidden;
}
.page-hero::before,
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(102,126,234,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(16,185,129,0.12) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero .container,
.page-header .container { position: relative; z-index: 1; }
.page-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.page-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  margin: 0;
  font-weight: 400;
  max-width: 560px;
}

/* ── Section headings ───────────────────────────────────────── */
.section-label {
  display: inline-block;
  background: linear-gradient(135deg, rgba(102,126,234,0.15), rgba(102,126,234,0.05));
  color: #667eea;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid rgba(102,126,234,0.25);
  margin-bottom: 12px;
}

/* ── Investment cards ───────────────────────────────────────── */
.investments-showcase {
  padding: 64px 0 80px;
  background: #f8fafc;
}
.investments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.investment-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 26px 24px;
  box-shadow: 0 4px 20px rgba(15,23,42,0.07);
  border-left: 4px solid transparent;
  background-clip: padding-box;
  position: relative;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s ease;
  overflow: hidden;
}
.investment-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #667eea, #764ba2);
  border-radius: 4px 0 0 4px;
}
.investment-card:nth-child(2n)::before { background: linear-gradient(180deg,#10b981,#059669); }
.investment-card:nth-child(3n)::before { background: linear-gradient(180deg,#f59e0b,#d97706); }
.investment-card:nth-child(4n)::before { background: linear-gradient(180deg,#3b82f6,#1d4ed8); }
.investment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(15,23,42,0.13);
}
/* Fade in animation */
.investment-card {
  opacity: 0;
  transform: translateY(24px);
  animation: invCardIn 0.5s ease forwards;
}
.investment-card:nth-child(1) { animation-delay: 0.05s; }
.investment-card:nth-child(2) { animation-delay: 0.10s; }
.investment-card:nth-child(3) { animation-delay: 0.15s; }
.investment-card:nth-child(4) { animation-delay: 0.20s; }
.investment-card:nth-child(5) { animation-delay: 0.25s; }
.investment-card:nth-child(6) { animation-delay: 0.30s; }
.investment-card:nth-child(7) { animation-delay: 0.35s; }
.investment-card:nth-child(8) { animation-delay: 0.40s; }
@keyframes invCardIn { to { opacity: 1; transform: translateY(0); } }

.investment-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.investment-info h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
  line-height: 1.3;
}
.investment-amount {
  display: inline-block;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 4px;
}
.investment-stage {
  display: inline-block;
  background: #f1f5f9;
  color: #475569;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}
.investment-date {
  flex-shrink: 0;
  font-size: 12px;
  color: #94a3b8;
  font-weight: 500;
  white-space: nowrap;
  padding-top: 2px;
}
.investment-description {
  font-size: 14px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

/* ── About page ─────────────────────────────────────────────── */
.about-content { padding: 64px 0 80px; }

.about-intro { max-width: 780px; margin: 0 auto 56px; text-align: center; }
.about-intro h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: #0f172a; margin: 0 0 16px; }
.about-intro .lead { font-size: 1.15rem; color: #334155; font-weight: 600; line-height: 1.65; margin-bottom: 12px; }
.about-intro p { color: #475569; line-height: 1.75; font-size: 1rem; }

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.mission-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 20px;
  padding: 36px 28px 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1);
}
.mission-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(102,126,234,0.25) 0%, transparent 70%);
  border-radius: 50%;
}
.mission-card:hover { transform: translateY(-6px); }
.mission-card .card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(102,126,234,0.4);
}
.mission-card h3 { font-size: 1.25rem; font-weight: 700; margin: 0 0 10px; }
.mission-card p { color: rgba(255,255,255,0.78); line-height: 1.65; margin: 0; font-size: 0.97rem; }

.about-description { max-width: 780px; margin: 0 auto 52px; }
.about-description h2 { font-size: 1.7rem; font-weight: 800; color: #0f172a; margin-bottom: 16px; }
.about-description p { color: #475569; line-height: 1.75; margin-bottom: 12px; }

.values-section { margin-bottom: 56px; }
.values-section h2 { font-size: 1.7rem; font-weight: 800; color: #0f172a; margin-bottom: 28px; text-align: center; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.value-item {
  background: #fff;
  border-radius: 18px;
  padding: 28px 22px 24px;
  box-shadow: 0 4px 20px rgba(15,23,42,0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-item:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(15,23,42,0.12); }
.value-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #059669;
  margin: 0 auto 16px;
}
.value-item h4 { font-size: 1.05rem; font-weight: 700; color: #0f172a; margin: 0 0 8px; }
.value-item p { font-size: 0.9rem; color: #64748b; line-height: 1.6; margin: 0; }

.team-section { margin-bottom: 48px; }
.team-section h2 { font-size: 1.7rem; font-weight: 800; color: #0f172a; margin-bottom: 28px; }
.team-photo { margin: 32px 0; border-radius: 20px; overflow: hidden; box-shadow: 0 8px 32px rgba(15,23,42,0.12); }
.team-image { width: 100%; max-height: 460px; object-fit: cover; display: block; }
.team-description { max-width: 760px; margin: 20px auto 0; }
.team-description p { color: #475569; line-height: 1.75; margin-bottom: 12px; font-size: 1rem; }

.cta-section {
  text-align: center;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  border-radius: 24px;
  padding: 52px 32px;
  margin-top: 20px;
}
.cta-section h2 { font-size: 1.8rem; font-weight: 800; margin: 0 0 12px; }
.cta-section p { color: rgba(255,255,255,0.75); margin: 0 0 24px; font-size: 1.05rem; }
.cta-section .cta {
  display: inline-block;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: opacity 0.2s, transform 0.2s;
}
.cta-section .cta:hover { opacity: 0.88; transform: scale(1.04); }

/* ── Team cards (hakkımızda) ────────────────────────────────── */
.team-card {
  border-radius: 18px !important;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(15,23,42,0.10) !important;
  border: none !important;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s ease !important;
}
.team-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 48px rgba(15,23,42,0.17) !important;
  border: none !important;
}
.team-card .image-wrap { width: 100% !important; height: 220px !important; border-radius: 0 !important; }
.team-card .image-wrap img { width: 100% !important; height: 100% !important; object-fit: cover; }

/* ── Contact page ───────────────────────────────────────────── */
.contact-content { padding: 64px 0 80px; background: #f8fafc; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 32px; }
@media(max-width:900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-card {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  border-radius: 22px;
  padding: 36px 28px;
}
.contact-info-card .info-header { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.contact-info-card .info-header i { font-size: 22px; color: #667eea; }
.contact-info-card .info-header h3 { font-size: 1.2rem; font-weight: 700; margin: 0; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-item i { width: 36px; height: 36px; background: rgba(102,126,234,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #667eea; flex-shrink: 0; font-size: 14px; }
.contact-item strong { display: block; font-size: 12px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 3px; }
.contact-item p { color: rgba(255,255,255,0.88); margin: 0; font-size: 14px; line-height: 1.55; }

/* ── Scroll reveal ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; }
.reveal.visible { animation: fadeUp 0.55s ease forwards; }

/* ── Blog / News page hero tweak ────────────────────────────── */
.blog-content { padding: 56px 0 80px; background: #f8fafc; }
