/* ==========================================================
   BROŞÜR BASKI SAYFASI
========================================================== */


/* ==========================================================
   HERO
========================================================== */

.service-hero {
    position: relative;

    padding: 150px 0 90px;

    text-align: center;
}

.service-hero .container {
    position: relative;
    z-index: 2;
}

.service-tag {
    display: inline-block;

    margin-bottom: 25px;
    padding: 8px 20px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;

    background: rgba(255, 255, 255, 0.05);

    color: #c79b6a;

    font-size: 0.8rem;
    font-weight: 700;

    letter-spacing: 2px;
}

.service-hero h1 {
    max-width: 950px;

    margin: 0 auto 25px;

    color: #ffffff;

    font-size: clamp(2.5rem, 5vw, 4.5rem);

    font-weight: 800;

    line-height: 1.1;

    letter-spacing: -1px;
}

.service-hero p {
    max-width: 760px;

    margin: 0 auto;

    color: #aeb4bd;

    font-size: 1.05rem;

    line-height: 1.9;
}


/* ==========================================================
   SHOWCASE
========================================================== */

.service-showcase {
    padding: 80px 0;
}

.showcase-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.7fr)
        minmax(320px, 0.8fr);

    gap: 50px;

    align-items: start;
}




/* ==========================================================
   SERVICE CARD
========================================================== */

.service-card {
    position: sticky;

    top: 110px;

    padding: 35px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.06),
            rgba(255, 255, 255, 0.025)
        );

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.25);

    backdrop-filter: blur(12px);
}

.service-card h3 {
    margin: 0 0 25px;

    color: #ffffff;

    font-size: 1.35rem;

    font-weight: 700;
}

.service-card ul {
    margin: 0;

    padding: 0;

    list-style: none;
}

.service-card li {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    padding: 16px 0;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);
}

.service-card li:last-child {
    border-bottom: none;
}

.service-card li span {
    color: #aeb4bd;

    font-size: 0.93rem;
}

.service-card li strong {
    color: #ffffff;

    font-size: 0.85rem;

    font-weight: 600;
}


/* ==========================================================
   BUTTONLAR
========================================================== */

.btn-primary {
    display: block;

    width: 100%;

    margin-top: 30px;

    padding: 16px 25px;

    border-radius: 12px;

    background: #c79b6a;

    color: #ffffff;

    text-align: center;

    text-decoration: none;

    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);

    background: #c79b6a;


}

.btn-whatsapp {
    display: block;

    width: 100%;

    margin-top: 15px;

    padding: 15px 25px;

    border:
        1px solid rgba(255, 255, 255, 0.1);

    border-radius: 12px;

    color: #25d366;

    text-align: center;

    text-decoration: none;

    font-weight: 600;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.btn-whatsapp i {
    margin-right: 8px;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);

    background:
        rgba(37, 211, 102, 0.08);
}


/* ==========================================================
   AÇIKLAMA
========================================================== */

.service-description {
    max-width: 900px;

    margin: 70px auto 0;
}

.service-description p {
    margin: 0 0 25px;

    color: #b7bec8;

    font-size: 1.05rem;

    line-height: 2;
}

.service-description p:last-child {
    margin-bottom: 0;
}


/* ==========================================================
   SECTION TITLE
========================================================== */

.section-title {
    max-width: 800px;

    margin: 0 auto 60px;

    text-align: center;
}

.section-title span {
    display: block;

    margin-bottom: 18px;

    color: #c79b6a;

    font-size: 0.8rem;

    font-weight: 700;

    letter-spacing: 2px;
}

.section-title h2 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: clamp(2rem, 4vw, 3rem);

    font-weight: 800;

    line-height: 1.2;
}

.section-title p {
    max-width: 720px;

    margin: 0 auto;

    color: #aeb4bd;

    line-height: 1.8;
}


/* ==========================================================
   BROŞÜR ÇEŞİTLERİ
========================================================== */

.card-types {
    padding: 100px 0;
}

.types-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.type-card {
    position: relative;

    padding: 35px;

    overflow: hidden;

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 22px;

    background: #171717;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.type-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: #c79b6a;

    transform: scaleX(0);

    transform-origin: left;

    transition:
        transform 0.4s ease;
}

.type-card:hover {
    transform: translateY(-8px);

    border-color:
        #c79b6a(214, 31, 44, 0.4);

    box-shadow:
        0 20px 45px
        rgba(0, 0, 0, 0.25);
}

.type-card:hover::before {
    transform: scaleX(1);
}


/* ==========================================================
   TYPE ICON
========================================================== */

.type-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 65px;
    height: 65px;

    margin-bottom: 25px;

    border-radius: 18px;

    background:
        #c79b6a(228, 14, 14, 0.12);

    color: #c79b6a;

    font-size: 1.5rem;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.type-card:hover .type-icon {
    transform: rotate(-5deg);

    background: #c79b6a;

    color: #ffffff;
}

.type-card h3 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 1.25rem;

    font-weight: 700;
}

.type-card p {
    margin: 0;

    color: #aeb4bd;

    font-size: 0.95rem;

    line-height: 1.8;
}


/* ==========================================================
   KULLANIM ALANLARI
========================================================== */

.advantages {
    padding: 100px 0;
}

.advantages-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;
}

.advantage-item {
    padding: 35px 25px;

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 20px;

    background: #171717;

    text-align: center;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.advantage-item:hover {
    transform: translateY(-7px);

    border-color:
        #c79b6a(214, 31, 44, 0.4);

    box-shadow:
        0 15px 35px
        rgba(0, 0, 0, 0.2);
}

.advantage-item i {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 65px;
    height: 65px;

    margin: 0 auto 22px;

    border-radius: 50%;

    background:
        #c79b6a(214, 31, 44, 0.1);

    color: #c79b6a;

    font-size: 1.5rem;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.advantage-item:hover i {
    transform: scale(1.08);

    background: #c79b6a;

    color: #ffffff;
}

.advantage-item h4 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 1.1rem;
}

.advantage-item p {
    margin: 0;

    color: #aeb4bd;

    font-size: 0.93rem;

    line-height: 1.8;
}


/* ==========================================================
   FAQ
========================================================== */

.faq-section {
    padding: 100px 0;
}

.faq-list {
    max-width: 900px;

    margin: 0 auto;
}

.faq-item {
    margin-bottom: 18px;

    padding: 28px 30px;

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 18px;

    background: #171717;

    transition:
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item:hover {
    transform: translateX(5px);

    border-color:
        #c79b6a(214, 31, 44, 0.4);

    box-shadow:
        0 12px 30px
        rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 1.08rem;

    font-weight: 700;

    line-height: 1.5;
}

.faq-item p {
    margin: 0;

    color: #aeb4bd;

    font-size: 0.95rem;

    line-height: 1.8;
}


/* ==========================================================
   CTA
========================================================== */

.service-cta {
    padding: 100px 0 120px;
}

.cta-box {
    position: relative;

    padding: 80px 60px;

    overflow: hidden;

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 50% 0%,
            #c79b6a(214, 31, 44, 0.16),
            transparent 55%
        ),
        #171717;

    text-align: center;

    box-shadow:
        0 25px 60px
        rgba(0, 0, 0, 0.2);
}

.cta-box::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 200px;
    height: 2px;

    transform:
        translateX(-50%);

    background: #c79b6a;
}

.cta-box > * {
    position: relative;

    z-index: 1;
}

.cta-box > span {
    color: #c79b6a;

    font-size: 0.8rem;

    font-weight: 700;

    letter-spacing: 2px;
}

.cta-box h2 {
    max-width: 850px;

    margin: 20px auto;

    color: #ffffff;

    font-size: clamp(2rem, 4vw, 3.2rem);

    font-weight: 800;

    line-height: 1.2;
}

.cta-box p {
    max-width: 750px;

    margin: 0 auto 35px;

    color: #aeb4bd;

    line-height: 1.9;
}

.cta-buttons {
    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;
}

.cta-buttons a {
    min-width: 220px;
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 1100px) {

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        position: relative;

        top: auto;
    }

    .advantages-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .showcase-image img {
        min-height: 450px;
    }

}


@media (max-width: 800px) {

    .types-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .service-hero {
        padding: 110px 0 65px;
    }

    .service-hero h1 {
        font-size: 2.4rem;

        letter-spacing: -0.5px;
    }

    .service-hero p {
        font-size: 1rem;

        line-height: 1.8;
    }

    .service-showcase,
    .card-types,
    .advantages,
    .faq-section,
    .service-cta {
        padding: 70px 0;
    }

    .showcase-grid {
        gap: 30px;
    }

    .showcase-image img {
        min-height: 300px;
    }

    .service-card {
        padding: 25px;
    }

    .service-card li {
        gap: 10px;
    }

    .service-card li span {
        font-size: 0.88rem;
    }

    .service-card li strong {
        font-size: 0.78rem;
    }

    .types-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .type-card {
        padding: 30px;
    }

    .faq-item {
        padding: 24px 20px;
    }

    .cta-box {
        padding: 55px 25px;
    }

    .cta-box h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons a {
        width: 100%;

        min-width: 0;
    }

}