/* ============================
   SEO BLOCK - AGENCY LEVEL
============================ */

.seo-block{
    padding:50px 0;
    background:#0b0b0b;
}

/* eşit yükseklik */
.seo-block .row{
    display:flex;
    flex-wrap:wrap;
}

.seo-block .col-md-3{
    display:flex;
}

/* BOX */
.seo-box{
    position:relative;
    background:linear-gradient(145deg,#1a1a1a,#111);
    padding:35px 25px;
    border-radius:16px;
    transition:all .35s ease;
    margin-bottom:30px;
    width:100%;

    display:flex;
    flex-direction:column;

    overflow:hidden;
}

/* üst çizgi */
.seo-box::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:linear-gradient(90deg,#ffc400,transparent);
    opacity:0.6;
    transition:0.3s;
}

/* glow layer */
.seo-box::after{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at center, rgba(255,196,0,0.15), transparent 70%);
    opacity:0;
    transition:0.3s;
}

/* icon */
.seo-icon{
    font-size:34px;
    color:#ffc400;
    margin-bottom:15px;
    transition:0.3s;
}

/* başlık */
.seo-box h2{
    color:#ffc400;
    font-size:20px;
    margin-bottom:12px;
    font-weight:700;
}

/* text */
.seo-box p{
    color:#bbb;
    font-size:15px;
    line-height:1.6;
}

/* hover */
.seo-box:hover{
    transform:translateY(-12px) scale(1.03);
    background:#ffc400;

    box-shadow:
        0 0 25px rgba(255,196,0,0.7),
        0 0 60px rgba(255,196,0,0.4),
        0 20px 50px rgba(0,0,0,0.6);
}

.seo-box:hover::after{
    opacity:1;
}

.seo-box:hover::before{
    opacity:1;
    height:4px;
}

.seo-box:hover h2,
.seo-box:hover p{
    color:#000;
}

.seo-box:hover .seo-icon{
    color:#000;
    transform:scale(1.2) rotate(5deg);
}/* ============================
   TV CHANGE SECTION
============================ */

.seo-tv-change{
    background:#111;
    padding:100px 0;
    text-align:center;
}

.seo-tv-box{
    width:100%;
    max-width:1140px;   /* bootstrap container genişliği */
    margin:0 auto;
}

.seo-tv-box h2{
    font-size:36px;
    font-weight:700;
    margin-bottom:15px;
    color:#ffc400;
}

.seo-tv-box h4{
    font-size:22px;
    margin-bottom:25px;
    color:#fff;
}

.seo-tv-box p{
    color:#ccc;
    font-size:18px;
    margin-bottom:30px;
}

.seo-phone{
    font-size:26px;
    font-weight:700;
    color:#25D366;
    margin-bottom:10px;
}

.seo-brand{
    color:#aaa;
    font-size:14px;
}


/* ========================= */
/* MINI FAQ - PREMIUM STYLE */
/* ========================= */

.mini-faq{
    background:#000;
    padding:80px 0;
}

/* SARı BAŞLIK */
.faq-title-box{
    background:#FFD700;
    padding:25px;
    border-radius:14px;
    margin-bottom:40px;
    text-align:center;
}

.faq-title-box h2{
    color:#000;
    margin:0;
    font-weight:700;
}

/* HER SORU */
.faq-item{
    margin-bottom:15px;
}

.faq-question{
    background:#111;
    color:#FFD700;
    padding:18px 25px;
    border-radius:12px;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-weight:600;
    transition:0.3s ease;
}

.faq-question:hover{
    background:#1c1c1c;
}

/* + İKONU */
.faq-icon{
    font-size:22px;
    font-weight:700;
    color:#FFD700;
    transition:0.3s;
}

/* CEVAP */
.faq-answer{
    background:#ffffff;
    color:#000000;
    padding:20px;
    border-radius:12px;
    margin-top:8px;
    display:none;
    font-weight:500;
}
