.ap-container{ max-width:1320px; margin:auto; padding:0 20px; }
.ap-hero{ background: var(--color-6); padding:20px 0; color:#fff; position:relative; overflow:hidden; border-bottom: 1px solid #2F5E7F; }

/* büyük halka */
.ap-hero::before{
content:"";
position:absolute;
right:-50px;
top:-80px;
width:420px;
height:420px;
border:50px solid rgba(255,255,255,0.05);
border-radius:50%;
}

/* küçük halka */
.ap-hero::after{
content:"";
position:absolute;
right:100px;
top:-100px;
width:300px;
height:300px;
border:40px solid rgba(255,255,255,0.03);
border-radius:50%;
}

/* üst alan */
.ap-hero-top{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:20px;
flex-wrap:wrap;
}

/* breadcrumb */
.ap-crumb{
color:var(--breadcrumb-1);
font-size:14px;
}

.ap-crumb a{
color:var(--breadcrumb-1);
text-decoration:none;
}
.ap-crumb a:hover{
color:var(--breadcrumb-2);
text-decoration:none;
}



.ap-crumb span{
margin:0 6px;
}

/* baslik */
.ap-title{
color:var(--breadcrumb-1);
font-size:40px;
margin-bottom:10px;
font-weight:600;
}

/* açiklama */
.ap-desc{
color:var(--breadcrumb-1);
max-width:600px;
}

/* dil butonlari */
.ap-lang a{
padding:6px 14px;
border:1px solid rgba(255,255,255,0.35);
border-radius:20px;
margin-left:8px;
color:#fff;
text-decoration:none;
font-size:13px;
}

.ap-lang a.active{
background:#fff;
color:#224e6d;
}

/* ========== CARD ALANI ========== */
.ap-docs{
background: var(--breadcrumb-5);
padding:60px 0;
}

/* grid */
.ap-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

/* card */
.ap-card{
background:#fff;
border-radius:14px;
border:1px solid var(--breadcrumb-3);
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
display:flex;
flex-direction:column;
transition:0.3s;
}


/* üst görsel */
.ap-card-img{
position:relative;
padding:30px;
text-align:center;
overflow:hidden;
background: linear-gradient(135deg, #0f2f45, #224e6d); }

.ap-card-img::before{
content:"";
position:absolute;
inset:0;
background: repeating-linear-gradient(
45deg,
rgba(255,255,255,0.04) 0px,
rgba(255,255,255,0.04) 20px,
transparent 30px,
transparent 50px);
pointer-events:none;
}
.ap-card-img img{
width:100px;
}

/* badge */
.ap-badge{
position:absolute;
top:10px;
right:10px;
background:#ffffff33;
color:#fff;
padding:4px 10px;
border-radius:20px;
font-size:12px;
}

.ap-tag{
position:absolute;
bottom:10px;
left:10px;
background:#ffffff33;
color:#fff;
padding:4px 10px;
border-radius:20px;
font-size:12px;
}

/* içerik */
.ap-card-body{
padding:20px;
flex:1;
display:flex;
flex-direction:column;
justify-content:space-between;
}

.ap-card-body h3{ margin-bottom:6px; color:var(--breadcrumb-2);
}

.ap-card-body p{
color:#6b7280;
font-size:14px;
}

/* alt alan */
.ap-card-bottom{
display:flex;
justify-content:space-between;
align-items:center;
margin-top:15px;
gap:10px;
}

/* buton */
.ap-btn{
background:var(--color-6);
color:#fff;
padding:8px 14px;
border-radius:8px;
text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:6px;}

.ap-btn:hover{
background:var(--color-2);
color:#fff;}


.ap-btn i{
  font-size:14px;   /* küçült */
  position:relative;
  top:1px;          /* dikey hizalama */}

/* dropdown */
.ap-lang-dropdown{
position:relative;
}

.ap-lang-btn{
background:var(--breadcrumb-5);
border:none;
padding:6px 12px;
border-radius:8px;
cursor:pointer;
}

.ap-lang-menu{
position:absolute;
bottom:120%;
left:0;
background:var(--breadcrumb-5);
border-radius:10px;
box-shadow:0 8px 20px rgba(0,0,0,0.1);
padding:8px 0;
min-width:150px;
opacity:0;
visibility:hidden;
transform:translateY(10px);
transition:0.25s;
}

.ap-lang-menu a{
display:block;
padding:8px 12px;
font-size:13px;
color:#333;
text-decoration:none;
}

.ap-lang-menu a:hover{background:var(--breadcrumb-1);}

.ap-lang-dropdown:hover .ap-lang-menu{
opacity:1;
visibility:visible;
transform:translateY(0);
}

/* CTA */
.ap-cta{
margin-top:40px;
background:#fff;
border: 1px solid var(--breadcrumb-3);
color:var(--breadcrumb-2);
padding:30px;
border-radius:16px;
display:flex;
justify-content:space-between;
align-items:center;
}

.ap-cta-btn{
background:var(--color-5);
border: 1px solid #2F5E7F;
color:#fff;
padding:10px 20px;
border-radius:10px;
text-decoration:none;
}

/* ========== MOBIL ========== */
@media(max-width:992px){
.ap-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.ap-grid{
grid-template-columns:1fr;
}
}
