/* ==========================================
   HAKKIMIZDA PAGE STYLES
   Editorial, kutusal olmayan, profesyonel kurumsal.
   ========================================== */

/* ==========================================
   STORY SECTION — Editorial Split
   ========================================== */
.abt-story-section {
  padding: var(--space-20) 0 var(--space-24);
  background-color: var(--color-bg-dark);
}

.abt-story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.abt-story-heading {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: var(--font-weight-extrabold);
  letter-spacing: var(--letter-spacing-heading);
  line-height: var(--lh-heading);
  margin-bottom: var(--space-8);
}

.abt-story-body p {
  font-size: var(--text-base);
  color: var(--color-text-secondary-dark);
  line-height: 1.75;
  margin-bottom: var(--space-5);
}

.abt-story-body p:last-child {
  margin-bottom: 0;
}

.abt-story-visual {
  position: relative;
}

.abt-story-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 6 / 5;
  clip-path: polygon(0 12%, 100% 7%, 100% 100%, 0 88%);
  transition: all var(--transition-slow);
  background-image: url('../img/kamera1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.abt-story-img-wrapper img {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
}

.abt-story-img-wrapper:Hover {
  clip-path: polygon(0 3%, 100% 12%, 100% 88%, 0 97%);
}

.abt-story-accent {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 120px;
  height: 120px;
  border: var(--border-width-thick) solid rgba(var(--color-gold-rgb), 0.15);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* ==========================================
   METRICS STRIP
   ========================================== */
.abt-metrics-section {
  padding: var(--space-12) 0;
  border-top: var(--border-width-thin) solid var(--glass-border);
  border-bottom: var(--border-width-thin) solid var(--glass-border);
}

.abt-metrics-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-12);
}

.abt-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2);
}

.abt-metric-number {
  font-family: var(--font-primary);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: var(--font-weight-extrabold);
  color: var(--color-gold-hex);
  letter-spacing: var(--letter-spacing-heading);
  line-height: 1;
}

.abt-metric-label {
  font-family: var(--font-secondary);
  font-size: var(--text-xs);
  color: var(--color-gold-hex);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-heading);
}

.abt-metric-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg,
      transparent 0%,
      rgba(var(--color-gold-rgb), 0.2) 50%,
      transparent 100%);
  flex-shrink: 0;
}

/* ==========================================
   MISSION & VISION — Editorial Columns
   ========================================== */
.abt-mv-section {
  padding: var(--space-24) 0;
}

.abt-mv-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.abt-mv-columns {
  display: flex;
  align-items: flex-start;
  gap: var(--space-12);
}

.abt-mv-item {
  flex: 1;
}

.abt-mv-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  border: var(--border-width-thin) solid rgba(var(--color-gold-rgb), 0.15);
  color: var(--color-gold-hex);
  margin-bottom: var(--space-6);
  transition: all var(--transition-normal);
}

.abt-mv-item:hover .abt-mv-icon {
  border-color: var(--color-gold-hex);
  background: rgba(var(--color-gold-rgb), 0.06);
}

.abt-mv-title {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-3);
  color: var(--color-text-primary-dark);
}

.abt-mv-text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
  margin-bottom: 0;
}

.abt-mv-separator {
  width: 1px;
  min-height: 180px;
  align-self: stretch;
  background: linear-gradient(180deg,
      transparent 0%,
      var(--glass-border) 20%,
      rgba(var(--color-gold-rgb), 0.12) 50%,
      var(--glass-border) 80%,
      transparent 100%);
  flex-shrink: 0;
}

/* ==========================================
   EXPERTISE — Visual + Text Editorial
   ========================================== */
.abt-expertise-section {
  padding: var(--space-24) 0;
  background: rgba(15, 15, 20, 0.35);
}

.abt-expertise-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--space-16);
  align-items: center;
}

.abt-expertise-visual {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  width: 100%;
}

.abt-expertise-img-wrapper {
  overflow: hidden;
  height: 210px;
  border-radius: var(--radius-xxl);
}


.abt-expertise-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.abt-expertise-img-wrapper--top img {
  object-position: 50% 35%;
}

.abt-expertise-img-wrapper--bottom img {
  object-position: 50% 45%;
}

.abt-expertise-section:hover .abt-expertise-img-wrapper img {
  transform: scale(1.03);
}

.abt-expertise-text {
  font-size: var(--text-base);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
  margin-bottom: var(--space-10);
}

.abt-expertise-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.abt-expertise-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
}

.abt-expertise-marker {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-extrabold);
  color: rgba(var(--color-gold-rgb), 0.25);
  line-height: 1;
  min-width: 36px;
  flex-shrink: 0;
  padding-top: 2px;
}

.abt-expertise-item-title {
  font-size: var(--text-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-2);
}

.abt-expertise-item p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary-dark);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ==========================================
   BRANDS / PARTNERS
   ========================================== */
.abt-brands-section {
  padding: var(--space-24) 0;
}

.abt-brands-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.abt-brands-header .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.abt-brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.abt-brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8) var(--space-6);
  min-height: 108px;
  border: var(--border-width-thin) solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-normal), background-color var(--transition-normal);
}

.abt-brand-item:hover {
  border-color: rgba(var(--color-gold-rgb), 0.25);
  background: rgba(var(--color-gold-rgb), 0.03);
}

.abt-brand-logo {
  display: block;
  width: auto;
  max-width: 132px;
  height: 40px;
  object-fit: contain;
  opacity: 0.55;
  filter: brightness(0) invert(1);
  transition: opacity var(--transition-normal), filter var(--transition-normal), transform var(--transition-normal);
}

.abt-brand-item:hover .abt-brand-logo {
  opacity: 0.95;
  transform: scale(1.04);
}

/* ==========================================
   APPROACH / WHY ANKA — Editorial Manifesto
   ========================================== */
.abt-approach-section {
  padding: var(--space-24) 0;
  background: rgba(15, 15, 20, 0.35);
  border-top: var(--border-width-thin) solid var(--glass-border);
  border-bottom: var(--border-width-thin) solid var(--glass-border);
}

.abt-approach-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--space-16);
  align-items: start;
}

.abt-approach-lead {
  max-width: 520px;
}

.abt-approach-heading {
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-3xl));
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  letter-spacing: var(--letter-spacing-heading);
  margin-bottom: var(--space-5);
}

.abt-approach-text {
  font-size: var(--text-base);
  line-height: var(--lh-body);
  color: var(--color-text-secondary-dark);
  margin-bottom: 0;
}

.abt-approach-logo {
  display: block;
  width: 100%;
  height: auto;
  margin-top: var(--space-10);
  padding: var(--space-10) var(--space-16);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  border: 0;
  border: 1px solid var(--color-gold-hex);
  border-left: 1px solid var(--color-gold-hex);
}


.abt-approach-content {
  display: grid;
  gap: var(--space-6);
}

.abt-approach-principles {
  display: grid;
  gap: var(--space-4);
}

.abt-approach-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-5);
  padding: var(--space-6);
  background: rgba(var(--color-white-rgb), 0.02);
  border: var(--border-width-thin) solid var(--glass-border);
  border-radius: var(--radius-lg);
}

.abt-approach-index {

  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-gold-hex);
  color: var(--color-gold-hex);
  font-size: var(--text-base);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
}

.abt-approach-point h4 {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-2);
  transition: all var(--transition-normal);
}

.abt-approach-point p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary-dark);
  line-height: 1.65;
  margin-bottom: 0;
  transition: all var(--transition-normal);
}

.abt-approach-point:hover h4,
.abt-approach-point:hover p {
  color: var(--color-gold-hex);
}

.abt-approach-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: var(--border-width-thin) solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.abt-approach-proof-item {
  padding: var(--space-5);
  background: rgba(var(--color-white-rgb), 0.015);
  border-right: var(--border-width-thin) solid var(--glass-border);
  text-align: center;
}

.abt-approach-proof-item:last-child {
  border-right: none;
}

.abt-approach-proof-item span {
  display: block;
  color: var(--color-text-secondary-dark);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  margin-bottom: var(--space-2);
  transition: all var(--transition-normal);
}

.abt-approach-proof-item p {
  color: var(--color-text-secondary-dark);
  font-size: var(--text-xs);
  line-height: var(--lh-meta);
  margin-bottom: 0;
  transition: all var(--transition-normal);
}


.abt-approach-proof-item:hover span,
.abt-approach-proof-item:hover p {
  color: var(--color-gold-hex);
}