/* =========================
   HOME WRAPPER (ADS SYSTEM)
========================= */

.hero-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

/* =========================
   HERO SECTION (MERKEZ)
========================= */

.hero-section {
    background: linear-gradient(135deg, #0d6efd, #4f8cff);
    color: white;
    padding: 180px 20px 120px;
    border-radius: 0 0 40px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    flex: 0 0 70%;
}

    /* decorative glow */
    .hero-section::before {
        content: "";
        position: absolute;
        top: -100px;
        left: -100px;
        width: 300px;
        height: 300px;
        background: rgba(255,255,255,0.15);
        border-radius: 50%;
        filter: blur(50px);
    }

    .hero-section::after {
        content: "";
        position: absolute;
        bottom: -120px;
        right: -120px;
        width: 350px;
        height: 350px;
        background: rgba(255,255,255,0.12);
        border-radius: 50%;
        filter: blur(60px);
    }

/* =========================
   ADS AREAS (YANLAR)
========================= */

.ad-space {
    flex: 0 0 15%;
    min-height: 100%;
}

    .ad-space.left,
    .ad-space.right {
        background: transparent;
    }

/* =========================
   HERO TEXT
========================= */

.hero-section h1 {
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-section p {
    opacity: .9;
    font-size: 18px;
}

/* =========================
   SEARCH
========================= */

.search-box {
    max-width: 720px;
    margin: 30px auto 0;
    position: relative;
}

    .search-box .input-group {
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0,0,0,.18);
    }

    .search-box .input-group-text {
        border: none;
        background: white;
    }

    .search-box input {
        border: none;
        padding: 18px;
        font-size: 16px;
    }

        .search-box input:focus {
            outline: none;
            box-shadow: none;
        }

/* =========================
   HERO BUTTON
========================= */

.hero-section .btn {
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 500;
}

/* =========================
   STATS
========================= */

.stats-box {
    margin-top: 40px;
}

    .stats-box h2 {
        font-size: 34px;
        font-weight: 800;
        color: #0d6efd;
    }

    .stats-box p {
        color: #6c757d;
    }

/* =========================
   TOOL CARDS
========================= */

.tool-card {
    border: none;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,.08);
    transition: all .25s ease;
    min-height: 220px;
}

    .tool-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 14px 35px rgba(0,0,0,.15);
    }

.tool-icon {
    font-size: 50px;
    margin-bottom: 12px;
}

/* =========================
   CAROUSEL
========================= */

.carousel {
    padding: 0 65px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 52px;
    height: 52px;
    background: white;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    box-shadow: 0 5px 20px rgba(0,0,0,.15);
}

.carousel-control-prev {
    left: -12px;
}

.carousel-control-next {
    right: -12px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

    .ad-space {
        display: none;
    }

    .hero-section {
        flex: 1;
        border-radius: 0 0 30px 30px;
    }
}

@media (max-width: 768px) {

    .hero-section {
        padding: 140px 15px 90px;
    }

        .hero-section h1 {
            font-size: 32px;
        }

    .carousel {
        padding: 0 20px;
    }

    .tool-card {
        min-height: 180px;
    }
}
.hero-wrapper {
    display: flex;
    width: 100%;
}

/* SOL + SAĞ REKLAM */
.ad-space {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100%;
}

/* HERO ORTA */
.hero-section {
    flex: 2;
    background: linear-gradient(135deg, #0d6efd, #4f8cff);
    color: white;
    padding: 180px 20px 120px;
    text-align: center;
    border-radius: 0 0 40px 40px;
}

/* REKLAM KUTUSU */
.ad-box {
    width: 90%;
    height: 300px;
    background: #f1f1f1;
    border: 2px dashed #bbb;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666;
    font-weight: bold;
    border-radius: 10px;
}

/* MOBİLDE KAPAT */
@media (max-width: 992px) {
    .ad-space {
        display: none;
    }

    .hero-section {
        flex: 1;
    }
}