@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&family=Poppins:wght@300;400;600;700&display=swap');

/* ================= ROOT ================= */
.sh-skp-root {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #000;
    overflow-x: hidden;
}

/* ================= HERO ================= */
.sh-skp-hero {
    height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    background: #000;
    overflow: hidden;
}

.sh-skp-hero-video {
    position: absolute;
    inset: 0
}

.sh-skp-hero-iframe {
    width: 100vw;
    height: 56.25vw;
    min-width: 177.77vh;
    min-height: 100vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.sh-skp-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .4);
}

.sh-skp-hero-content {
    position: relative;
    z-index: 2;
    padding-left: 8%;
    width: 60%;
}

.sh-skp-hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 7vw;
    line-height: .85;
    color: #fff;
}

.sh-skp-hero-title-red {
    display: block;
    color: #E30613
}

.sh-skp-hero-text {
    color: #eee;
    max-width: 450px;
    margin: 20px 0;
}

.sh-skp-hero-cta {
    display: inline-block;
    padding: 18px 50px;
    background: #E30613;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

/* ================= CATEGORIES (ORÄ°JÄ°NAL) ================= */
.sh-skp-categories {
    display: flex;
    height: 550px;
    background: #000;
}

.sh-skp-cat-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: flex .5s ease;
}

.sh-skp-cat-item:hover {
    flex: 1.2
}

.sh-skp-cat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .7;
    transition: opacity .5s ease;
}

.sh-skp-cat-item:hover .sh-skp-cat-img {
    opacity: 1
}

.sh-skp-cat-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000 0%, transparent 40%);
    z-index: 2;
    transition: .4s ease;
}

.sh-skp-cat-item:hover::before {
    background: linear-gradient(to top, #E30613 0%, transparent 70%);
    opacity: .8;
}

.sh-skp-cat-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: #fff;
    z-index: 3;
    transition: .4s ease;
}

.sh-skp-model-img-wrap {
    position: relative;
}

.sh-skp-cat-item:hover .sh-skp-cat-text {
    transform: translateY(-15px);
}

.sh-skp-cat-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    letter-spacing: 2px;
}

.sh-skp-cat-line {
    width: 0;
    height: 4px;
    background: #fff;
    margin-top: 10px;
    transition: width .4s ease;
}

.sh-skp-cat-item:hover .sh-skp-cat-line {
    width: 100%;
}

/* ================= RECO ================= */
.sh-skp-reco {
    padding: 60px;
    text-align: center;
    background: #f9f9f9;
    color: #bbb;
}

/* ================= TECH (ORÄ°JÄ°NAL) ================= */
.sh-skp-tech {
    padding: 100px 20px
}

.sh-skp-tech-header {
    position: relative;
    text-align: center;
    margin-bottom: 80px;
}

.sh-skp-tech-header2 {
    position: relative;
    text-align: center;
    margin-bottom: 80px;
    margin-top: 80px;
}

.sh-skp-tech-bg {
    font-family: 'Oswald', sans-serif;
    font-size: 6rem;
    color: #eee;
}

.sh-skp-tech-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.4rem;
    font-weight: 600;
}

.sh-skp-tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.sh-skp-tech-card {
    background: #f5f5f5;
    padding: 48px 50px;
    min-height: 200px;
    border-left: 6px solid #E30613;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    text-decoration: none;
    color: inherit;
    padding-bottom: 78px;
}

.sh-skp-tech-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    color: #E30613;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.sh-skp-tech-card-text {
    font-size: .95rem;
    line-height: 1.7;
}

.sh-skp-tech-card-cta {
    position: absolute;
    right: 22px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #E30613;
    user-select: none;
}

.sh-skp-tech-card-cta-icon{
  background: transparent;     /* kırmızı bg yok */
  border-radius: 0;            /* yuvarlak yok */
  width: auto;
  height: auto;
  color: #E30613;              /* ikon kırmızı */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;             /* isteğe göre */
  line-height: 1;
  transition: transform .2s ease, opacity .2s ease;
}


.sh-skp-tech-card:hover .sh-skp-tech-card-cta-icon {
    transform: translateX(3px);
    filter: brightness(0.95);
}


/* ================= PREMIUM ================= */
.sh-skp-model {
    position: relative;
    padding: 120px 5%;
}

.sh-skp-model-dark {
    background: radial-gradient(circle, #1a1a1a 0%, #000 70%);
    color: #fff;
}

.sh-skp-model-light {
    background: #fff;
    color: #000;
}

.sh-skp-model-bg {
    position: absolute;
    font-family: 'Oswald', sans-serif;
    font-size: 22vw;
    opacity: .05;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.sh-skp-model-inner {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.sh-skp-reverse {
    grid-template-columns: .8fr 1.2fr
}

.sh-skp-model-img {
    width: 100%;
    transform: rotate(-8deg);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .6));
    transition: .6s cubic-bezier(.165, .84, .44, 1);
}

.sh-skp-model:hover .sh-skp-model-img {
    transform: rotate(0deg) scale(1.08);
}

.sh-skp-model-badge {
    position: absolute;
    top: 20%;
    right: -10px;
    background: #E30613;
    color: #fff;
    padding: 6px 22px;
    font-size: .75rem;
    letter-spacing: 2px;
    transform: rotate(90deg);
}

.sh-skp-model-title {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
}

.sh-skp-model-line {
    width: 100px;
    height: 6px;
    background: #E30613;
    margin: 25px 0;
}

.sh-skp-model-btn {
    display: inline-block;
    padding: 16px 45px;
    border: 2px solid #E30613;
    color: #fff;
    text-decoration: none;
    transition: .4s ease;
    margin-top: 12px;
}

.sh-skp-model-btn:hover {
    background: #E30613
}

.sh-skp-model-btn-dark {
    color: #000;
    border-color: #000;
}

.sh-skp-model-btn-dark:hover {
    background: #000;
    color: #fff;
}

/* ================= SEO ================= */
.sh-skp-seo {
    max-width: 1200px;
    margin: 60px auto;
}

.sh-skp-seo-trigger {
    width: 100%;
    padding: 20px;
    background: #000;
    color: #fff;
    border: none;
    display: flex;
    justify-content: space-between;
}

.sh-skp-seo-content {
    max-height: 0;
    overflow-y: scroll;
    transition: max-height .4s ease;
}

.sh-skp-open {
    max-height: 500px
}

.sh-skp-seo-inner {
    padding: 30px
}

/* ================= MOBILE ================= */
@media(max-width:992px) {
    .sh-skp-categories {
        flex-direction: column;
        height: auto
    }

    .sh-skp-cat-item {
        height: 300px
    }

    .sh-skp-model-inner,
    .sh-skp-reverse {
        grid-template-columns: 1fr;
        text-align: center
    }
}

/* =====================================================
   MOBILE RESPONSIVE â€“ ORÄ°JÄ°NAL KODDAN BÄ°REBÄ°R
   ===================================================== */

/* ---------- TABLET (<= 992px) ---------- */
@media (max-width: 992px) {

    /* HERO */
    .sh-skp-hero-content {
        width: 80%;
    }

    .sh-skp-hero-title {
        font-size: 12vw;
    }

    /* TECH */
    .sh-skp-tech-grid {
        grid-template-columns: 1fr;
    }

    /* PREMIUM */
    .sh-skp-model-inner,
    .sh-skp-reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sh-skp-model-line {
        margin: 25px auto;
    }

    .sh-skp-model-title {
        font-size: 3.5rem;
    }

    .sh-skp-model-img {
        transform: rotate(0deg) scale(1);
    }

    /* KATEGORÄ° */
    .sh-skp-categories {
        flex-direction: column;
        height: auto;
    }

    .sh-skp-cat-item {
        height: 300px;
    }
}

/* ---------- MOBILE (<= 768px) ---------- */
@media (max-width: 768px) {

    /* HERO */
    .sh-skp-hero {
        height: 60vh;
    }

    .sh-skp-hero-content {
        width: 90%;
        padding-left: 5%;
        text-align: center;
    }

    .sh-skp-hero-title {
        font-size: 12vw;
    }

    .sh-skp-hero-cta {
        margin: 30px auto 0;
    }

    /* TECH */
    .sh-skp-tech {
        padding: 70px 15px;
    }

    .sh-skp-tech-bg {
        font-size: 4.5rem;
    }

    .sh-skp-tech-title {
        font-size: 1.5rem;
    }

    .sh-skp-tech-card {
        padding: 40px 35px;
    }

    /* PREMIUM */
    .sh-skp-model {
        padding: 70px 20px;
    }

    .sh-skp-model-bg {
        font-size: 30vw;
    }

    .sh-skp-model-title {
        font-size: 3rem;
        line-height: 1;
    }

    .sh-skp-model-btn,
    .sh-skp-model-btn-dark {
        margin: 0 auto;
    }

    /* SEO */
    .sh-skp-seo {
        margin: 40px 15px;
    }

    .sh-skp-seo-trigger {
        font-size: .95rem;
        padding: 18px;
    }

    .sh-skp-tech-card {
        padding-bottom: 70px;
    }

    .sh-skp-tech-card-cta {
        right: 16px;
        bottom: 14px;
        font-size: 0.9rem;
    }

    .sh-skp-tech-card-cta-icon {
        width: 38px;
        height: 38px;
    }

}