/* ═══════════════════════════════════════════════════════════════
   Tecrübelerimiz (Our Experience) – Premium Editorial Style
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.exp-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.exp-hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.exp-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,15,35,0.88) 0%, rgba(0,15,35,0.45) 50%, rgba(0,15,35,0.2) 100%);
  z-index: 1;
}
.exp-hero__content {
  position: relative; z-index: 2;
  padding-bottom: 5rem; padding-top: 10rem;
}
.exp-hero__label {
  display: block;
  font-size: 0.8rem; font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.exp-hero__title {
  font-family: var(--ff-heading);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  color: #fff; font-weight: 500;
  line-height: 1.12; max-width: 800px;
}
.exp-hero__desc {
  font-family: var(--ff-primary);
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 620px;
  margin-top: 1.5rem;
}

/* ── Stats Banner ── */
.exp-stats {
  background: var(--clr-navy, #06102A);
  padding: 4rem 0;
}
.exp-stat-item {
  text-align: center;
  position: relative;
}
.exp-stat-item::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(255,255,255,0.12);
}
.exp-stat-item:last-child::after {
  display: none;
}
.exp-stat__number {
  font-family: var(--ff-heading, Georgia, serif);
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  font-weight: 500;
  color: var(--clr-gold, #C8A24D);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.exp-stat__label {
  font-family: var(--ff-primary, sans-serif);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}
.exp-stat__desc {
  font-family: var(--ff-primary, sans-serif);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  max-width: 220px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .exp-stat-item::after { display: none; }
  .exp-stat-item { margin-bottom: 2.5rem; }
  .exp-stat-item:last-child { margin-bottom: 0; }
}

/* ── Expertise Areas ── */
.exp-expertise {
  padding: 6rem 0;
  background: #FAF9F6;
}
.exp-expertise__title {
  font-family: var(--ff-heading, Georgia, serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--clr-gold, #C8A24D);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.exp-expertise__subtitle {
  font-family: var(--ff-primary, sans-serif);
  font-size: 1.08rem;
  color: var(--clr-text, #333);
  line-height: 1.7;
  white-space: nowrap;
  margin-bottom: 3.5rem;
}

/* Expertise Card (legacy) */
.exp-area-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.35s ease;
  border: 1px solid rgba(0,0,0,0.04);
}

/* ── Category Section ── */
.exp-category {
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.exp-category:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.exp-category__header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.exp-category__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--clr-navy, #06102A), #0b2847);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.exp-category__icon i {
  font-size: 1.5rem;
  color: var(--clr-gold, #C8A24D);
}
.exp-category__title {
  font-family: var(--ff-heading, Georgia, serif);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  color: var(--clr-navy, #06102A);
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
}

/* ── Item Card ── */
.exp-item-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.75rem;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.exp-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.exp-item-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.exp-item-card__top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.exp-item-card__shield {
  width: 48px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}
.exp-item-card__desc {
  font-family: var(--ff-primary, sans-serif);
  font-size: 0.92rem;
  color: var(--clr-text, #333);
  line-height: 1.7;
  margin: 0;
  flex-grow: 1;
}

/* Badges */
.exp-area-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.exp-area-badge {
  font-family: var(--ff-primary, sans-serif);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}
.exp-area-badge--budget {
  background: rgba(200,162,77,0.12);
  color: var(--clr-gold, #C8A24D);
  border: 1px solid rgba(200,162,77,0.25);
}
.exp-area-badge--status {
  border: 1px solid;
}
.exp-area-badge--active {
  background: rgba(16,185,129,0.1);
  color: #059669;
  border-color: rgba(16,185,129,0.25);
}
.exp-area-badge--completed {
  background: rgba(99,102,241,0.1);
  color: #4f46e5;
  border-color: rgba(99,102,241,0.25);
}

/* ── Case Studies / Referans Projeler ── */
.exp-cases {
  padding: 6rem 0;
  background: #fff;
}
.exp-cases__title {
  font-family: var(--ff-heading, Georgia, serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--clr-gold, #C8A24D);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 3.5rem;
}

/* Case Card */
.exp-case-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.04);
}
.exp-case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.exp-case-card__img {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}
.exp-case-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.exp-case-card:hover .exp-case-card__img img {
  transform: scale(1.06);
}
.exp-case-card__tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  background: var(--clr-navy, #06102A);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 2px;
}
.exp-case-card__body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.exp-case-card__title {
  font-family: var(--ff-heading, Georgia, serif);
  font-size: 1.2rem;
  color: var(--clr-navy, #06102A);
  font-weight: 500;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}
.exp-case-card__desc {
  font-family: var(--ff-primary, sans-serif);
  font-size: 0.9rem;
  color: var(--clr-text, #333);
  line-height: 1.65;
  flex-grow: 1;
}
.exp-case-card__scope {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0,0,0,0.07);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.exp-case-card__scope-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--clr-navy, #06102A);
  background: rgba(0,69,124,0.06);
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
  letter-spacing: 0.02em;
}

/* ── CTA Section ── */
.exp-cta {
  padding: 5rem 0;
  background: #f4f5f6;
}
.exp-cta__title {
  font-family: var(--ff-heading, Georgia, serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  color: #111;
}
.exp-cta__btn {
  background-color: var(--clr-navy, #06102A);
  color: #fff;
  border: none;
  padding: 0.7rem 2.2rem;
  font-weight: 500;
  border-radius: 3px;
  font-family: var(--ff-primary, system-ui, sans-serif);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s;
}
.exp-cta__btn:hover {
  background-color: var(--clr-gold, #C8A24D);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .exp-hero { min-height: 45vh; }
  .exp-hero__content { padding-bottom: 2rem; padding-top: 5rem; }
  .exp-hero__title { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .exp-category__header { gap: 1rem; }
  .exp-category__icon { width: 44px; height: 44px; border-radius: 10px; }
  .exp-category__icon i { font-size: 1.2rem; }
  .exp-item-card { padding: 1.25rem; }
  .exp-case-card__img { height: 200px; }
  .exp-expertise { padding: 3.5rem 0; }
  .exp-expertise__subtitle { font-size: 0.95rem; margin-bottom: 2.5rem; white-space: normal; }
}
@media (max-width: 480px) {
  .exp-hero { min-height: 40vh; }
  .exp-hero__content { padding-bottom: 1.5rem; padding-top: 4rem; }
  .exp-hero__title { font-size: clamp(1.3rem, 6vw, 1.8rem); }
  .exp-item-card { padding: 1rem; }
  .exp-item-card__desc { font-size: 0.85rem; }
  .exp-area-badge { font-size: 0.65rem; padding: 0.2rem 0.5rem; }
  .exp-expertise { padding: 2.5rem 0; }
  .exp-category { margin-bottom: 2.5rem; padding-bottom: 2.5rem; }
  .exp-cta { padding: 3rem 0; }
}
