:root{
  --navy:#0b2a4a;
  --navy2:#0f3a66;
  --orange:#ff7a00;
  --text:#0b1320;
  --muted:#5b6b7f;
  --bg:#f6f8fb;
  --card:#ffffff;
  --radius:18px;
  --shadow:0 16px 45px rgba(0,0,0,0.12);
  --shadow2:0 20px 55px rgba(0,0,0,0.18);
}

.mavi-page{
background:#f5f7fb;
font-family:Arial,Helvetica,sans-serif;
}

/* Buttons */
.btn{display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px; border-radius:14px; text-decoration:none; font-weight:700; border:1px solid transparent;
  transition:0.25s; cursor:pointer;
}
.btn-primary{background:var(--orange); color:#fff; box-shadow:0 12px 28px rgba(255,122,0,0.22);}
.btn-primary:hover{transform:translateY(-2px); box-shadow:0 16px 38px rgba(255,122,0,0.28);}
.btn-ghost{background:rgba(255,255,255,0.12); color:#fff; border-color:rgba(255,255,255,0.25);}
.btn-ghost:hover{transform:translateY(-2px); background:rgba(255,255,255,0.18);}
.w-100{width:100%}

/* HERO */
.sy-hero{
  position:relative;
  padding:70px 0 40px;
  background:linear-gradient(120deg, var(--navy) 0%, #071b31 50%, #061527 100%);
  color:#fff;
}
.sy-hero-bg{
  position:absolute; inset:0; opacity:0.22;
  background:
    radial-gradient(900px 500px at 15% 20%, rgba(255,122,0,0.35), transparent 55%),
    radial-gradient(900px 500px at 85% 20%, rgba(58,160,255,0.25), transparent 55%),
    radial-gradient(900px 500px at 50% 90%, rgba(255,255,255,0.10), transparent 60%);
  pointer-events:none;
}
.sy-hero-grid{
  position:relative;
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap:26px;
  align-items:start;
}
.sy-badge{
  display:inline-flex; align-items:center; gap:10px;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.18);
  padding:8px 12px; border-radius:999px;
}
.sy-badge .dot{width:10px;height:10px;border-radius:50%;background:var(--orange);box-shadow:0 0 0 6px rgba(255,122,0,0.18);}
.sy-hero h1{margin:14px 0 10px; font-size:44px; line-height:1.10; letter-spacing:-0.6px;}
.sy-lead{margin:0; font-size:16px; color:rgba(255,255,255,0.85); line-height:1.6}

.sy-hero-points{list-style:none; padding:0; margin:18px 0 0;}
.sy-hero-points li{display:flex; gap:10px; align-items:flex-start; margin:10px 0; color:rgba(255,255,255,0.9);}
.tick{width:22px; height:22px; border-radius:7px; display:inline-flex; align-items:center; justify-content:center;
  background:rgba(255,122,0,0.18); border:1px solid rgba(255,122,0,0.35); color:#fff; font-weight:900;
}

.sy-hero-cta{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap}

.sy-trustbar{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
.trust-item{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.14);
  border-radius:16px;
  padding:12px;
}
.trust-no{font-weight:900; font-size:18px}
.trust-txt{color:rgba(255,255,255,0.82); font-size:13px; margin-top:2px}

/* HERO RIGHT */
.sy-hero-card{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.16);
  border-radius:22px;
  padding:16px;
  box-shadow:var(--shadow2);
  backdrop-filter: blur(8px);
}
.sy-hero-card-top{display:flex; justify-content:space-between; align-items:center; gap:10px; margin-bottom:12px}
.mini-title{font-size:12px; color:rgba(255,255,255,0.75)}
.mini-chip{font-size:12px; font-weight:800; padding:7px 10px; border-radius:999px;
  background:rgba(255,122,0,0.15); border:1px solid rgba(255,122,0,0.30);
}

.sy-hero-slider{border-radius:18px; overflow:hidden; border:1px solid rgba(255,255,255,0.12);}
.sy-hero-img img{width:100%; height:240px; object-fit:cover}
.sy-hero-card-bottom{
  margin:12px 0 12px;
  display:grid; grid-template-columns:repeat(3,1fr); gap:10px;
}
.kpi{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:16px;
  padding:10px;
}
.kpi-no{font-weight:900}
.kpi-txt{font-size:12px; color:rgba(255,255,255,0.78); margin-top:2px}

/* STRIP */
.sy-strip{padding:18px 0; background:#071b31}
.strip-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:12px}
.strip-card{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:18px;
  padding:14px;
  color:#fff;
}
.strip-ico{font-size:18px}
.strip-tit{font-weight:900; margin-top:6px}
.strip-sub{font-size:12px; color:rgba(255,255,255,0.78); margin-top:2px}

/* HEADINGS */
.sy-head{margin-bottom:18px}
.sy-head h2{margin:0; font-size:30px; letter-spacing:-0.3px}
.sy-sub{margin:10px 0 0; color:var(--muted); line-height:1.65}

/* SERVICES */
.sy-services{padding:55px 0}
.svc-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.svc-card{
  background:var(--card);
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(11,42,74,0.08);
  box-shadow:var(--shadow);
  transition:0.25s;
}
.svc-card:hover{transform:translateY(-4px); box-shadow:0 22px 60px rgba(0,0,0,0.14)}
.svc-img img{height:160px; width:100%; object-fit:cover}
.svc-card h3{margin:14px 14px 8px; font-size:18px}
.svc-card ul{margin:0 14px 16px; padding-left:18px; color:#273446}
.svc-card li{margin:8px 0; line-height:1.45}
.svc-card.highlight{border:1px solid rgba(255,122,0,0.35)}
.svc-card.highlight h3{color:var(--navy)}

/* PROOF */
.sy-proof{padding:55px 0; background:#ffffff}
.proof-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:16px}
.proof-card{
  border-radius:22px; overflow:hidden;
  border:1px solid rgba(11,42,74,0.08);
  box-shadow:var(--shadow);
  background:#fff;
}
.proof-card img{height:190px; width:100%; object-fit:cover}
.proof-txt{padding:14px}
.proof-txt h3{margin:0 0 6px}
.proof-txt p{margin:0; color:var(--muted); line-height:1.6}

/* PROCESS */
.sy-process{padding:55px 0}
.steps{display:grid; grid-template-columns:repeat(4,1fr); gap:14px}
.step{
  background:var(--card);
  border:1px solid rgba(11,42,74,0.08);
  border-radius:22px;
  padding:16px;
  box-shadow:var(--shadow);
}
.step-no{
  width:44px; height:44px; border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,122,0,0.14);
  border:1px solid rgba(255,122,0,0.30);
  color:var(--navy);
  font-weight:900;
}
.step h3{margin:12px 0 8px}
.step p{margin:0; color:var(--muted); line-height:1.6}

/* FORM */
.sy-form{padding:60px 0; background:linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%)}
.form-grid{display:grid; grid-template-columns:1fr 1fr; gap:18px; align-items:start}
.form-left h2{margin:0; font-size:30px}
.form-info{
  margin-top:14px;
  background:#fff;
  border:1px solid rgba(11,42,74,0.08);
  border-radius:22px;
  padding:14px;
  box-shadow:var(--shadow);
}
.info-line{display:flex; gap:10px; align-items:center; padding:8px 0; border-bottom:1px dashed rgba(11,42,74,0.10)}
.info-line:last-child{border-bottom:none}
.safe-note{
  margin-top:12px;
  background:rgba(255,122,0,0.10);
  border:1px solid rgba(255,122,0,0.22);
  color:#2a2a2a;
  border-radius:18px;
  padding:12px;
  line-height:1.6;
}

.sy-form-box{
  background:var(--navy);
  color:#fff;
  border-radius:26px;
  padding:18px;
  box-shadow:var(--shadow2);
  border:1px solid rgba(255,255,255,0.10);
}
.f-row{margin-bottom:12px}
.f-row label{display:block; font-weight:800; margin-bottom:6px; font-size:13px; color:rgba(255,255,255,0.92)}
.f-row input, .f-row select, .f-row textarea{
  width:100%;
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.16);
  background:rgba(255,255,255,0.08);
  color:#fff;
  padding:12px 12px;
  outline:none;
}
.f-row input::placeholder, .f-row textarea::placeholder{color:rgba(255,255,255,0.70)}
.f-row input:focus, .f-row select:focus, .f-row textarea:focus{
  border-color:rgba(255,122,0,0.65);
  box-shadow:0 0 0 5px rgba(255,122,0,0.18);
}
.f-row.two{display:grid; grid-template-columns:1fr 1fr; gap:10px}
.form-privacy{margin-top:10px; font-size:12px; color:rgba(255,255,255,0.70); line-height:1.5}

/* Toast */
.toast{
  margin-top:12px;
  display:none;
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.18);
  border-left:4px solid var(--orange);
  border-radius:18px;
  padding:12px;
  font-weight:800;
}
.toast.show{display:block}

/* FAQ */
.sy-faq{padding:55px 0}
.faq{max-width:860px}
.faq-item{
  background:#fff;
  border:1px solid rgba(11,42,74,0.08);
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--shadow);
  margin-bottom:12px;
}
.faq-item .q{
  width:100%;
  text-align:left;
  background:transparent;
  border:none;
  padding:14px 16px;
  font-weight:900;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
}
.faq-item .q span{
  width:34px; height:34px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,122,0,0.10);
  border:1px solid rgba(255,122,0,0.22);
  font-weight:900;
}
.faq-item .a{display:none; padding:0 16px 14px}
.faq-item.active .a{display:block}
.faq-item .a p{margin:0; color:var(--muted); line-height:1.7}


/* =========================
HEADER LOGO FIX
========================= */

.logo img,
.header-logo img,
header img{
height:72px !important;
width:auto !important;
max-width:none !important;
object-fit:contain;
}

/* header hizalama */
header .container{
display:flex;
align-items:center;
justify-content:space-between;
}

/* logo alanı */
.logo{
display:flex;
align-items:center;
gap:12px;
}












/* =========================================
SEO & TRUST SECTION
========================================= */

.sy-seo{
padding:70px 0;
background:#ffffff;
}

.seo-grid{
display:grid;
grid-template-columns:1.2fr 0.8fr;
gap:30px;
margin-top:30px;
align-items:start;
}

.seo-text p{
margin-bottom:18px;
line-height:1.7;
color:#2a3746;
font-size:15px;
}

.seo-list{
margin:20px 0;
padding-left:20px;
}

.seo-list li{
margin-bottom:10px;
line-height:1.6;
color:#0b2a4a;
font-weight:600;
}

.seo-highlight{
display:flex;
flex-direction:column;
gap:20px;
}

.highlight-card{
background:#f6f8fb;
border-radius:20px;
padding:25px;
box-shadow:0 15px 35px rgba(0,0,0,0.08);
border:1px solid rgba(11,42,74,0.08);
}

.highlight-card h3{
margin-top:0;
margin-bottom:15px;
font-size:18px;
color:#0b2a4a;
}

.highlight-card ul{
padding-left:18px;
margin:0;
}

.highlight-card ul li{
margin-bottom:10px;
font-weight:600;
color:#1f2e3c;
}

.highlight-card.accent{
background:linear-gradient(135deg,#0b2a4a,#0f3a66);
color:#fff;
border:none;
}

.highlight-card.accent h3{
color:#fff;
}

.highlight-card.accent p{
color:#ffffffd9;
line-height:1.7;
}









/* =========================================
HİZMET PAKETLERİ
========================================= */

.sy-packages{
padding:80px 0;
background:linear-gradient(180deg,#f6f8fb 0%, #ffffff 100%);
}

.sy-head.center{
text-align:center;
margin-bottom:40px;
}

.pkg-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.pkg-card{
background:#fff;
border-radius:22px;
padding:30px;
box-shadow:0 20px 50px rgba(0,0,0,0.08);
border:1px solid rgba(11,42,74,0.08);
position:relative;
transition:0.35s;
}

.pkg-card:hover{
transform:translateY(-8px);
box-shadow:0 30px 70px rgba(0,0,0,0.15);
}

.pkg-top h3{
margin:0;
font-size:22px;
color:#0b2a4a;
}

.pkg-badge{
margin-top:8px;
font-size:13px;
font-weight:700;
color:#ff7a00;
}

.pkg-list{
margin:25px 0;
padding-left:0;
list-style:none;
}

.pkg-list li{
margin-bottom:12px;
font-weight:600;
color:#1f2e3c;
}

.pkg-bottom{
margin-top:25px;
}

/* POPULAR */
.pkg-card.popular{
border:2px solid #ff7a00;
transform:scale(1.05);
}

.popular-tag{
position:absolute;
top:-12px;
left:50%;
transform:translateX(-50%);
background:#ff7a00;
color:#fff;
padding:6px 14px;
border-radius:20px;
font-size:12px;
font-weight:700;
}

/* PREMIUM */
.pkg-card.premium{
background:linear-gradient(135deg,#0b2a4a,#0f3a66);
color:#fff;
}

.pkg-card.premium h3,
.pkg-card.premium li{
color:#fff;
}

.pkg-card.premium .pkg-badge{
color:#ffd9b3;
}







/* =======================================
WHY SEAACADEMYIK
======================================= */
.why-sea{
padding:90px 0;
background:#0b2a4a;
color:#fff;
}

.why-head{
text-align:center;
margin-bottom:50px;
}

.why-head h2{
font-size:36px;
margin-bottom:10px;
}

.why-head .sub{
color:#ffffffcc;
font-size:17px;
}

.why-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.why-card{
background:#0f3a66;
padding:28px;
border-radius:18px;
transition:0.3s;
border:1px solid rgba(255,255,255,0.05);
}

.why-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 50px rgba(0,0,0,0.4);
}

.why-icon{
font-size:28px;
margin-bottom:12px;
color:#ff7a00;
}

.why-card h3{
margin-bottom:10px;
font-size:18px;
}

.why-card p{
color:#ffffffcc;
line-height:1.6;
font-size:14px;
}

/* TRUST BAR */
.trust-bar{
margin-top:60px;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
text-align:center;
}

.trust-box{
background:#0f3a66;
padding:25px;
border-radius:16px;
}

.trust-no{
font-size:32px;
font-weight:800;
color:#ff7a00;
}

.trust-text{
margin-top:6px;
font-size:14px;
color:#fff;
}



/* =========================================
STICKY OFFER BAR
========================================= */

.sticky-offer{
position:fixed;
bottom:0;
left:0;
width:100%;
background:linear-gradient(90deg,#0b2a4a,#0f3a66);
color:#fff;
padding:18px 30px;
display:flex;
justify-content:space-between;
align-items:center;
box-shadow:0 -5px 25px rgba(0,0,0,0.25);
z-index:9999;
}

.offer-text{
font-size:18px;
font-weight:700;
}

.offer-sub{
font-size:13px;
color:#ffffffcc;
margin-top:4px;
}

.offer-right{
display:flex;
gap:12px;
align-items:center;
}

.btn-outline{
background:transparent;
border:1px solid #fff;
color:#fff;
}

.btn-outline:hover{
background:#fff;
color:#0b2a4a;
}





/* =====================================
FORM INPUT YAZI RENK FIX
===================================== */

/* input içi yazı */
input,
select,
textarea{
color:#0b2a4a !important;
font-weight:600;
}

/* placeholder rengi */
input::placeholder,
textarea::placeholder{
color:#8a97a8 !important;
font-weight:500;
opacity:1;
}

/* select yazı */
select{
color:#0b2a4a !important;
background:#fff !important;
}

/* form kutu içi */
.form-card input,
.form-card select,
.form-card textarea{
background:#f1f4f8 !important;
border:1px solid #d9e1ec !important;
}

/* focus efekti */
.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus{
outline:none;
border:1px solid #ff7a00 !important;
background:#fff !important;
box-shadow:0 0 0 3px rgba(255,122,0,0.15);
}