@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

.ae-career-process,
  .ae-career-process * {
    box-sizing: border-box;
  }

  .ae-career-process {
    --ae-gold: #F3BD48;
    --ae-gold-dark: #D9A12B;
    --ae-black: #050505;
    --ae-dark: #111111;
    --ae-soft-black: #191919;
    --ae-white: #ffffff;
    --ae-gray: #f5f5f5;
    --ae-text: #1f1f1f;
    --ae-muted: #666666;
    font-family: 'Montserrat', Arial, sans-serif;
    color: var(--ae-text);
    background: var(--ae-white);
    overflow: hidden;
  }

  .ae-career-process a {
    text-decoration: none;
  }

  .ae-wrap {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
  }

  .ae-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ae-gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }

  .ae-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--ae-gold);
    display: inline-block;
  }

  .ae-title {
    margin: 0;
    font-size: clamp(34px, 5vw, 66px);
    line-height: 0.96;
    letter-spacing: -0.055em;
    text-transform: uppercase;
    font-weight: 950;
  }

  .ae-subtitle {
    margin: 22px 0 0;
    max-width: 720px;
    color: rgba(255,255,255,0.78);
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.65;
    font-weight: 500;
  }

  .ae-btn-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
  }

  .ae-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 15px 24px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: .25s ease;
    cursor: pointer;
  }

  .ae-btn-gold {
    background: var(--ae-gold);
    color: var(--ae-black);
    box-shadow: 0 18px 35px rgba(243, 189, 72, .24);
  }

  .ae-btn-gold:hover {
    background: var(--ae-gold-dark);
    transform: translateY(-2px);
  }

  .ae-btn-dark {
    color: var(--ae-white);
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.06);
  }

  .ae-btn-dark:hover {
    border-color: var(--ae-gold);
    color: var(--ae-gold);
    transform: translateY(-2px);
  }

  .ae-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    padding: 110px 0 78px;
    color: var(--ae-white);
    background:
      linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.80) 43%, rgba(0,0,0,.48) 100%),
      url('https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
  }

  .ae-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 7px;
    background: linear-gradient(90deg, var(--ae-gold), transparent 65%);
  }

  .ae-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 50px;
    align-items: center;
  }

  .ae-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border: 1px solid rgba(243,189,72,.45);
    background: rgba(243,189,72,.09);
    color: var(--ae-gold);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 22px;
  }

  .ae-hero-card {
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(17,17,17,.78);
    backdrop-filter: blur(14px);
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 30px 80px rgba(0,0,0,.35);
  }

  .ae-card-title {
    margin: 0 0 18px;
    font-size: 22px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: -.035em;
  }

  .ae-check-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .ae-check-list li {
    display: flex;
    gap: 12px;
    color: rgba(255,255,255,.82);
    line-height: 1.45;
    font-size: 14px;
    font-weight: 600;
  }

  .ae-check-list li span:first-child {
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--ae-gold);
    color: var(--ae-black);
    font-weight: 950;
    font-size: 12px;
  }

  .ae-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
  }

  .ae-mini-stat {
    padding: 18px 14px;
    border-radius: 18px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
  }

  .ae-mini-stat strong {
    display: block;
    color: var(--ae-gold);
    font-size: 24px;
    line-height: 1;
    font-weight: 950;
  }

  .ae-mini-stat span {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,.68);
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .05em;
  }

  .ae-section {
    padding: 86px 0;
  }

  .ae-section-soft {
    background: var(--ae-gray);
  }

  .ae-section-dark {
    background: var(--ae-black);
    color: var(--ae-white);
  }

  .ae-section-head {
    max-width: 760px;
    margin-bottom: 44px;
  }

  .ae-section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .ae-section-head.center .ae-eyebrow::before {
    display: none;
  }

  .ae-h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: .98;
    font-weight: 950;
    letter-spacing: -.055em;
    text-transform: uppercase;
  }

  .ae-p {
    margin: 18px 0 0;
    color: var(--ae-muted);
    font-size: 16px;
    line-height: 1.75;
    font-weight: 500;
  }

  .ae-section-dark .ae-p {
    color: rgba(255,255,255,.7);
  }

  .ae-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
  }

  .ae-step {
    position: relative;
    min-height: 190px;
    padding: 22px;
    background: var(--ae-white);
    border: 1px solid rgba(0,0,0,.07);
    box-shadow: 0 16px 35px rgba(0,0,0,.06);
    overflow: hidden;
  }

  .ae-step::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: var(--ae-gold);
  }

  .ae-step.dark {
    background: var(--ae-black);
    color: var(--ae-white);
  }

  .ae-step-number {
    color: var(--ae-gold);
    font-size: 28px;
    line-height: 1;
    font-weight: 950;
    margin-bottom: 18px;
  }

  .ae-step h3 {
    margin: 0 0 10px;
    font-size: 15px;
    line-height: 1.18;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: -.025em;
  }

  .ae-step p {
    margin: 0;
    color: var(--ae-muted);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 550;
  }

  .ae-step.dark p {
    color: rgba(255,255,255,.7);
  }

  .ae-support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .ae-support-card {
    background: var(--ae-soft-black);
    color: var(--ae-white);
    border: 1px solid rgba(255,255,255,.08);
    padding: 32px;
    min-height: 270px;
    position: relative;
    overflow: hidden;
  }

  .ae-support-card:nth-child(even) {
    background: var(--ae-gold);
    color: var(--ae-black);
  }

  .ae-support-card::after {
    content: "";
    position: absolute;
    right: -42px;
    top: -42px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
  }

  .ae-support-card:nth-child(even)::after {
    background: rgba(0,0,0,.07);
  }

  .ae-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(243,189,72,.15);
    color: var(--ae-gold);
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: 950;
  }

  .ae-support-card:nth-child(even) .ae-icon {
    background: var(--ae-black);
    color: var(--ae-gold);
  }

  .ae-support-card h3 {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.05;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: -.04em;
  }

  .ae-support-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    font-weight: 560;
    color: rgba(255,255,255,.72);
  }

  .ae-support-card:nth-child(even) p {
    color: rgba(0,0,0,.74);
  }

  .ae-two-col {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 54px;
    align-items: center;
  }

  .ae-visual-card {
    min-height: 460px;
    background:
      linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.72)),
      url('https://images.unsplash.com/photo-1573164713988-8665fc963095?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    border-radius: 34px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 26px 60px rgba(0,0,0,.14);
  }

  .ae-visual-label {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 20px;
    background: var(--ae-black);
    color: var(--ae-white);
    border-left: 5px solid var(--ae-gold);
  }

  .ae-visual-label strong {
    display: block;
    color: var(--ae-gold);
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .12em;
  }

  .ae-visual-label span {
    display: block;
    margin-top: 7px;
    font-size: 22px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: -.04em;
  }

  .ae-bullet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 30px;
  }

  .ae-bullet {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 18px;
    background: var(--ae-white);
    border: 1px solid rgba(0,0,0,.07);
    box-shadow: 0 12px 26px rgba(0,0,0,.045);
  }

  .ae-bullet strong {
    display: block;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 950;
    text-transform: uppercase;
  }

  .ae-bullet span {
    display: block;
    margin-top: 4px;
    color: var(--ae-muted);
    font-size: 12px;
    line-height: 1.45;
    font-weight: 550;
  }

  .ae-bullet-mark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ae-gold);
    color: var(--ae-black);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 950;
  }

  .ae-roadmap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .ae-roadmap-card {
    background: var(--ae-white);
    color: var(--ae-black);
    padding: 34px;
    border-top: 6px solid var(--ae-gold);
  }

  .ae-roadmap-card h3 {
    margin: 0 0 10px;
    font-size: 34px;
    font-weight: 950;
    letter-spacing: -.06em;
    text-transform: uppercase;
  }

  .ae-roadmap-card strong {
    display: block;
    color: var(--ae-gold-dark);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 18px;
  }

  .ae-roadmap-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
  }

  .ae-roadmap-card li {
    display: flex;
    gap: 10px;
    color: #444;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 650;
  }

  .ae-roadmap-card li::before {
    content: "✓";
    color: var(--ae-gold-dark);
    font-weight: 950;
  }

  .ae-final-cta {
    padding: 92px 0;
    background:
      radial-gradient(circle at top left, rgba(243,189,72,.18), transparent 34%),
      linear-gradient(135deg, var(--ae-black), #171717);
    color: var(--ae-white);
    text-align: center;
  }

  .ae-final-cta .ae-h2 {
    max-width: 920px;
    margin: 0 auto;
  }

  .ae-final-cta .ae-p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .ae-note-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 34px;
  }

  .ae-note {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.08);
    text-align: left;
  }

  .ae-note strong {
    display: block;
    color: var(--ae-gold);
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
  }

  .ae-note span {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,.7);
    font-size: 12px;
    line-height: 1.45;
    font-weight: 560;
  }

  @media (max-width: 1024px) {
    .ae-hero-grid,
    .ae-two-col {
      grid-template-columns: 1fr;
    }

    .ae-process-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .ae-support-grid,
    .ae-roadmap {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 768px) {
    .ae-wrap {
      width: min(100% - 28px, 1180px);
    }

    .ae-hero {
      min-height: auto;
      padding: 70px 0 58px;
    }

    .ae-hero-card {
      padding: 22px;
      border-radius: 22px;
    }

    .ae-mini-stats,
    .ae-process-grid,
    .ae-bullet-grid,
    .ae-note-strip {
      grid-template-columns: 1fr;
    }

    .ae-section {
      padding: 62px 0;
    }

    .ae-step {
      min-height: auto;
    }

    .ae-title {
      font-size: clamp(38px, 13vw, 54px);
    }

    .ae-btn {
      width: 100%;
    }
  }

/* =========================================================
   ALTIN EMLAK KARİYER - WORDPRESS/TEMA ÇAKIŞMA DÜZELTMELERİ
   ========================================================= */
.ae-career-process {
  isolation: isolate;
}
.ae-career-process h1,
.ae-career-process h2,
.ae-career-process h3,
.ae-career-process h4,
.ae-career-process h5,
.ae-career-process h6,
.ae-career-process p,
.ae-career-process span,
.ae-career-process li,
.ae-career-process a,
.ae-career-process div {
  font-family: 'Montserrat', Arial, sans-serif;
}

/* Koyu zeminli bölümlerde tema kaynaklı siyah metni zorla düzeltir */
.ae-career-process .ae-dark-section,
.ae-career-process .ae-dark-section *:not(.ae-btn):not(.ae-btn *):not(.ae-gold-card):not(.ae-gold-card *) {
  color: #ffffff !important;
}
.ae-career-process .ae-dark-section p,
.ae-career-process .ae-dark-section li,
.ae-career-process .ae-dark-section .ae-muted,
.ae-career-process .ae-dark-section .ae-card-text,
.ae-career-process .ae-dark-section .ae-box p,
.ae-career-process .ae-dark-section .ae-plan-card p {
  color: rgba(255,255,255,0.78) !important;
}
.ae-career-process .ae-dark-section .ae-eyebrow,
.ae-career-process .ae-dark-section .ae-stat strong,
.ae-career-process .ae-dark-section .ae-number,
.ae-career-process .ae-dark-section .ae-step-no,
.ae-career-process .ae-dark-section .ae-gold-text,
.ae-career-process .ae-dark-section .fa-solid,
.ae-career-process .ae-dark-section .fa-regular,
.ae-career-process .ae-dark-section .fa-brands {
  color: #F3BD48 !important;
}
.ae-career-process .ae-dark-section .ae-eyebrow::before {
  background: #F3BD48 !important;
}

/* Altın kartlarda okunabilirlik */
.ae-career-process .ae-gold-card,
.ae-career-process .ae-gold-card * {
  color: #050505 !important;
}
.ae-career-process .ae-gold-card .ae-step-no,
.ae-career-process .ae-gold-card .ae-number {
  color: #050505 !important;
}

/* Açık zeminli bölüm kartları */
.ae-career-process .ae-light-section h1,
.ae-career-process .ae-light-section h2,
.ae-career-process .ae-light-section h3,
.ae-career-process .ae-light-section h4 {
  color: #050505 !important;
}
.ae-career-process .ae-light-section p,
.ae-career-process .ae-light-section li,
.ae-career-process .ae-light-section .ae-muted {
  color: #5f5f5f !important;
}

/* Elementor/tema buton link çakışması */
.ae-career-process .ae-btn,
.ae-career-process .ae-btn:hover,
.ae-career-process .ae-btn:focus,
.ae-career-process .ae-btn:visited {
  color: #050505 !important;
  text-decoration: none !important;
}
.ae-career-process .ae-btn-outline,
.ae-career-process .ae-btn-outline:hover,
.ae-career-process .ae-btn-outline:focus,
.ae-career-process .ae-btn-outline:visited {
  color: #ffffff !important;
}

/* Mobil taşmaları engelle */
.ae-career-process img { max-width: 100%; height: auto; }
.ae-career-process section { position: relative; }
