/* ================================
   TRENDLER 2026 GENEL
================================ */
#trendler-2026{
  background:#f8fafc;
  padding-bottom:80px;
  font-family:system-ui, -apple-system, BlinkMacSystemFont;
}

/* ================= HERO ================= */
.trend-hero{
  background:linear-gradient(135deg,#0d3b66,#1e6091);
  color:#fff;
  padding:80px 20px;
  text-align:center;
}

.trend-hero h1{
  font-size:42px;
  margin-bottom:15px;
  font-weight:700;
}

.trend-hero p{
  font-size:18px;
  opacity:.9;
  max-width:800px;
  margin:auto;
}

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

/* ================= CARD ================= */
.trend-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:.35s;
}

.trend-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 45px rgba(13,59,102,.25);
}

.trend-card-link{
  text-decoration:none;
  color:inherit;
  display:block;
  height:100%;
}

/* ================= IMAGE ================= */
.trend-card img{
  width:100%;
  height:200px;
  object-fit:cover;
  display:block;
}

/* ================= BODY ================= */
.trend-card-body{
  padding:22px;
}

.trend-card-body h2{
  font-size:20px;
  line-height:1.4;
  margin-bottom:14px;
  color:#0d3b66;
  font-weight:700;
}

/* ================= DETAIL BUTTON ================= */
.trend-detail-btn{
  display:inline-block;
  color:#f97316;
  font-weight:600;
  font-size:15px;
  transition:.3s;
}

.trend-card:hover .trend-detail-btn{
  color:#0d3b66;
}

/* ================= FORM ================= */
.trend-form{
  margin-top:90px;
  background:#fff;
  padding:50px;
  border-radius:20px;
  box-shadow:0 12px 30px rgba(0,0,0,.1);
}

.trend-form h2{
  text-align:center;
  margin-bottom:30px;
  color:#0d3b66;
  font-size:28px;
}

.trend-form form{
  max-width:600px;
  margin:auto;
  display:grid;
  gap:18px;
}

.trend-form input,
.trend-form textarea{
  padding:14px 16px;
  border-radius:10px;
  border:1px solid #ddd;
  font-size:15px;
}

.trend-form textarea{
  min-height:130px;
  resize:vertical;
}

.trend-form button{
  background:linear-gradient(135deg,#f97316,#fb923c);
  color:#fff;
  border:none;
  padding:14px;
  border-radius:12px;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  transition:.3s;
}

.trend-form button:hover{
  opacity:.9;
  transform:translateY(-2px);
}

/* ================= SUCCESS ================= */
.form-success{
  background:#ecfdf5;
  border:1px solid #10b981;
  color:#065f46;
  padding:20px;
  text-align:center;
  border-radius:12px;
  font-size:16px;
}

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

  .trend-hero h1{
    font-size:30px;
  }

  .trend-form{
    padding:30px 20px;
  }

}
.trend-intro{
  margin-top:50px;
  text-align:center;
}

.trend-intro h2{
  font-size:32px;
  color:#0d3b66;
  margin-bottom:20px;
}

.trend-intro p{
  max-width:900px;
  margin:auto;
  font-size:17px;
  line-height:1.7;
}

.trend-img-wrap{
  position:relative;
}

.trend-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(13,59,102,.75),transparent);
}

.trend-card-body p{
  font-size:15px;
  color:#444;
  line-height:1.5;
}

.trend-bottom-text{
  margin-top:70px;
  text-align:center;
  font-size:17px;
  color:#333;
  max-width:900px;
}

/* ===========================
   SEO HIGHLIGHT BLOK
=========================== */

.seo-highlight{
  background:#ffffff;
  padding:60px 0;
  border-top:1px solid #eef1f5;
  border-bottom:1px solid #eef1f5;
}

.seo-highlight .container{
  max-width:1100px;
  margin:auto;
  padding:0 20px;
}

.seo-highlight p{
  font-size:17px;
  line-height:1.9;
  color:#2a2a2a;
  text-align:center;
  font-weight:400;
}

.seo-highlight p strong{
  color:#0b1c33; /* Seaacademyik kurumsal koyu mavi */
  font-weight:700;
}

/* MOBİL */

@media(max-width:768px){
  .seo-highlight{
    padding:40px 0;
  }

  .seo-highlight p{
    font-size:15.5px;
    line-height:1.7;
  }
}
/* ===========================
   SEO EXPAND BLOK
=========================== */

.seo-expand{
  background:#f6f8fb;
  padding:60px 0;
}

.seo-expand h2{
  text-align:center;
  font-size:30px;
  font-weight:800;
  color:#0b1c33;
  margin-bottom:40px;
}

.seo-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:26px;
}

.seo-box{
  background:#ffffff;
  padding:28px;
  border-radius:18px;
  box-shadow:0 8px 22px rgba(0,0,0,.05);
  transition:.25s ease;
}

.seo-box:hover{
  transform:translateY(-4px);
}

.seo-box h3{
  font-size:18px;
  color:#0b1c33;
  margin-bottom:10px;
  font-weight:700;
}

.seo-box p{
  font-size:15.5px;
  line-height:1.7;
  color:#444;
}

/* MOBİL */

@media(max-width:768px){
  .seo-expand{
    padding:40px 0;
  }

  .seo-expand h2{
    font-size:24px;
    margin-bottom:25px;
  }
}




/* ===========================
   MINI SEO FAQ
=========================== */

.seo-faq-mini{
  background:#ffffff;
  padding:60px 0;
}

.seo-faq-mini h2{
  text-align:center;
  font-size:28px;
  font-weight:800;
  color:#0b1c33;
  margin-bottom:35px;
}

.faq-item{
  max-width:900px;
  margin:0 auto 14px auto;
  border:1px solid #e6eaf0;
  border-radius:14px;
  overflow:hidden;
}

.faq-question{
  width:100%;
  background:#f6f8fb;
  border:none;
  padding:16px 20px;
  font-size:16px;
  font-weight:700;
  text-align:left;
  cursor:pointer;
  color:#0b1c33;
}

.faq-answer{
  display:none;
  padding:16px 20px;
  font-size:15.5px;
  line-height:1.7;
  color:#444;
  background:#fff;
}

/* Mobil */

@media(max-width:768px){
  .seo-faq-mini{
    padding:40px 0;
  }

  .seo-faq-mini h2{
    font-size:23px;
  }
}



