/* ===================================================== */
/* ===================== RESET ========================= */
/* ===================================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family: "Segoe UI", Arial, Helvetica, sans-serif;
background:#f6f8fb;
color:#222;
line-height:1.7;
}

/* ===================================================== */
/* ===================== CONTAINER ===================== */
/* ===================================================== */

.container{
width:100%;
max-width:1200px;
margin:auto;
padding:0 20px;
}

/* ===================================================== */
/* ======================= HERO ======================== */
/* ===================================================== */

.sgk-hero{
position:relative;
padding:120px 20px 110px;
background:linear-gradient(135deg,#0b2d5c,#0f4c97,#0b2d5c);
color:#fff;
text-align:center;
overflow:hidden;
}

.sgk-hero::before{
content:"";
position:absolute;
width:600px;
height:600px;
background:rgba(255,255,255,0.05);
border-radius:50%;
top:-200px;
right:-200px;
}

.sgk-hero h1{
font-size:44px;
font-weight:800;
margin-bottom:20px;
letter-spacing:-0.5px;
}

.hero-sub{
font-size:18px;
max-width:850px;
margin:auto;
opacity:.95;
}

.hero-badges{
margin-top:35px;
display:flex;
flex-wrap:wrap;
gap:12px;
justify-content:center;
}

.hero-badges span{
background:rgba(255,255,255,0.12);
padding:12px 18px;
border-radius:10px;
font-weight:600;
backdrop-filter:blur(8px);
border:1px solid rgba(255,255,255,0.15);
}

/* ===================================================== */
/* ======================= CARDS ======================= */
/* ===================================================== */

.sgk-cards{
padding:80px 0;
}

.section-title{
font-size:32px;
font-weight:800;
margin-bottom:40px;
text-align:center;
color:#0b2d5c;
}

/* GRID */
.card-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

/* CARD */
.sgk-card{
background:#fff;
border-radius:18px;
padding:25px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
transition:.35s;
position:relative;
overflow:hidden;
display:flex;
flex-direction:column;
height:100%;
z-index:1;              /* 🔥 BUTON FIX */
}

.sgk-card:hover{
transform:translateY(-8px);
box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

/* IMAGE */
.sgk-card img{
width:100%;
height:170px;
object-fit:cover;
border-radius:12px;
margin-bottom:18px;
pointer-events:none;   /* 🔥 TIK BLOKAJI FIX */
}

/* TITLE */
.sgk-card h3{
font-size:20px;
margin-bottom:10px;
color:#0b2d5c;
}

/* TEXT */
.sgk-card p{
font-size:14px;
opacity:.8;
margin-bottom:20px;
flex-grow:1;
}

/* BUTTON — FULL ACTIVE */
.sgk-card a{
display:block;
width:100%;
padding:16px;
background:#ff7a00;
color:#fff;
text-decoration:none;
border-radius:12px;
font-weight:700;
font-size:15px;
text-align:center;
transition:.3s;
position:relative;
z-index:5;             /* 🔥 EN ÖNDE */
pointer-events:auto;   /* 🔥 BASMAMA FIX */
}

.sgk-card a:hover{
background:#e56d00;
transform:translateY(-2px);
box-shadow:0 12px 30px rgba(0,0,0,0.18);
}

/* MOBILE */
@media(max-width:768px){

.section-title{
font-size:24px;
}

.sgk-card{
padding:18px;
}

}

/* ===================================================== */
/* ======================= TABLO ======================= */
/* ===================================================== */

.sgk-table{
padding:70px 0;
background:#fff;
}

.sgk-table h2{
text-align:center;
font-size:28px;
margin-bottom:40px;
color:#0b2d5c;
}

.maliyet-tablo{
width:100%;
max-width:700px;
margin:auto;
border-collapse:collapse;
background:#fff;
box-shadow:0 10px 30px rgba(0,0,0,0.07);
border-radius:14px;
overflow:hidden;
}

.maliyet-tablo th{
background:#0b2d5c;
color:#fff;
padding:16px;
font-size:15px;
}

.maliyet-tablo td{
padding:15px;
border-bottom:1px solid #eee;
text-align:center;
font-weight:500;
}

.maliyet-tablo tr:hover{
background:#f6f9ff;
}

.maliyet-tablo .total{
background:#fff7ef;
font-weight:800;
color:#ff7a00;
font-size:17px;
}

/* ===================================================== */
/* ======================= ARTICLE ===================== */
/* ===================================================== */

.sgk-article{
padding:80px 0;
}

.sgk-article h2{
font-size:28px;
margin-bottom:25px;
color:#0b2d5c;
}

.sgk-article p{
margin-bottom:18px;
font-size:16px;
line-height:1.7;
}

/* ===================================================== */
/* ======================= FAQ ========================= */
/* ===================================================== */

.sgk-faq{
padding:80px 0;
background:#f7f9fc;
}

.sgk-faq h2{
text-align:center;
margin-bottom:35px;
font-size:28px;
color:#0b2d5c;
}

.faq-item{
max-width:800px;
margin:0 auto 15px;
border-radius:12px;
overflow:hidden;
box-shadow:0 8px 25px rgba(0,0,0,0.06);
}

.faq-item button{
width:100%;
padding:18px;
background:#fff;
border:none;
text-align:left;
font-size:16px;
font-weight:700;
cursor:pointer;
color:#0b2d5c;
}

.faq-content{
display:none;
padding:18px;
background:#fff;
font-size:15px;
line-height:1.6;
}

/* ===================================================== */
/* ======================= CTA ========================= */
/* ===================================================== */

.sgk-cta{
padding:90px 20px;
background:linear-gradient(135deg,#ff7a00,#ff9d2b);
text-align:center;
color:#fff;
}

.sgk-cta h2{
font-size:32px;
margin-bottom:15px;
}

.sgk-cta p{
font-size:18px;
margin-bottom:25px;
}

.cta-btn{
display:inline-block;
padding:15px 35px;
background:#0b2d5c;
color:#fff;
text-decoration:none;
font-weight:700;
border-radius:10px;
transition:.3s;
}

.cta-btn:hover{
background:#071f3f;
transform:scale(1.05);
}

/* ===================================================== */
/* ================= SCROLL BAR ======================== */
/* ===================================================== */

::-webkit-scrollbar{
width:10px;
}

::-webkit-scrollbar-thumb{
background:#ff7a00;
border-radius:10px;
}
