/* ==========================================================
   KUZEY MATBAACILIK
   KATALOG BASKI SAYFASI
========================================================== */


/* ==========================================================
   KATALOG HERO
========================================================== */

.catalog-hero {
    position: relative;

    padding: 150px 0 110px;

    overflow: hidden;
}

.catalog-hero::before {
    content: "";

    position: absolute;

    top: 0;
    right: -200px;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(199, 155, 106, 0.12),
            transparent 70%
        );

    pointer-events: none;
}

.catalog-hero-inner {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: center;

    gap: 80px;
}


/* ==========================================================
   HERO CONTENT
========================================================== */

.catalog-hero-content {
    max-width: 650px;
}

.catalog-tag {
    display: inline-block;

    margin-bottom: 25px;

    padding: 8px 20px;

    border:
        1px solid
        rgba(199, 155, 106, 0.3);

    border-radius: 50px;

    background:
        rgba(199, 155, 106, 0.08);

    color: #c79b6a;

    font-size: 0.78rem;

    font-weight: 700;

    letter-spacing: 2px;
}

.catalog-hero-content h1 {
    margin: 0 0 25px;

    color: #ffffff;

    font-size:
        clamp(2.8rem, 5vw, 5rem);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -1.5px;
}

.catalog-hero-content p {
    max-width: 600px;

    margin: 0;

    color: #aeb4bd;

    font-size: 1.05rem;

    line-height: 1.9;
}


/* ==========================================================
   HERO BUTTONS
========================================================== */

.catalog-hero-buttons {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 35px;
}

.catalog-btn-primary,
.catalog-btn-secondary {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 52px;

    padding: 0 25px;

    border-radius: 12px;

    text-decoration: none;

    font-size: 0.92rem;

    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.catalog-btn-primary {
    background: #c79b6a;

    color: #ffffff;
}

.catalog-btn-primary:hover {
    transform: translateY(-3px);

    background: #d8b486;

    box-shadow:
        0 12px 30px
        rgba(199, 155, 106, 0.25);
}

.catalog-btn-secondary {
    border:
        1px solid
        rgba(255, 255, 255, 0.15);

    background:
        rgba(255, 255, 255, 0.04);

    color: #ffffff;
}

.catalog-btn-secondary:hover {
    transform: translateY(-3px);

    border-color: #c79b6a;

    color: #c79b6a;
}


/* ==========================================================
   HERO GÖRSEL
========================================================== */

.catalog-hero-visual {
    position: relative;

    min-height: 560px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.catalog-image-main {
    position: relative;

    width: 85%;

    overflow: hidden;

    border-radius: 30px;

    transform:
        rotate(3deg);

    box-shadow:
        0 35px 80px
        rgba(0, 0, 0, 0.4);
}

.catalog-image-main::after {
    content: "";

    position: absolute;

    inset: 0;

    border:
        1px solid
        rgba(255, 255, 255, 0.1);

    border-radius: inherit;

    pointer-events: none;
}

.catalog-image-main img {
    display: block;

    width: 100%;

    height: 600px;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}

.catalog-image-main:hover img {
    transform: scale(1.05);
}


/* ==========================================================
   HERO FLOATING CARD
========================================================== */

.catalog-floating-card {
    position: absolute;

    left: 0;

    bottom: 40px;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 18px 22px;

    border:
        1px solid
        rgba(255, 255, 255, 0.1);

    border-radius: 16px;

    background:
        rgba(20, 20, 20, 0.85);

    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, 0.35);

    backdrop-filter: blur(15px);

    z-index: 3;
}

.catalog-floating-card > i {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 45px;

    height: 45px;

    border-radius: 12px;

    background:
        rgba(199, 155, 106, 0.12);

    color: #c79b6a;

    font-size: 1.1rem;
}

.catalog-floating-card div {
    display: flex;

    flex-direction: column;

    gap: 5px;
}

.catalog-floating-card strong {
    color: #ffffff;

    font-size: 0.9rem;
}

.catalog-floating-card span {
    color: #8e959e;

    font-size: 0.78rem;
}


/* ==========================================================
   KATALOG INTRO
========================================================== */

.catalog-intro {
    padding: 110px 0;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.05);

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.05);
}

.catalog-intro-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(0, 0.9fr);

    gap: 80px;

    align-items: center;
}

.section-label {
    display: block;

    margin-bottom: 18px;

    color: #c79b6a;

    font-size: 0.78rem;

    font-weight: 700;

    letter-spacing: 2px;
}

.catalog-intro-content h2 {
    max-width: 700px;

    margin: 0 0 25px;

    color: #ffffff;

    font-size:
        clamp(2.2rem, 4vw, 3.5rem);

    font-weight: 800;

    line-height: 1.15;

    letter-spacing: -1px;
}

.catalog-intro-content p {
    max-width: 700px;

    margin: 0 0 18px;

    color: #aeb4bd;

    font-size: 0.98rem;

    line-height: 1.9;
}

.catalog-intro-content p:last-child {
    margin-bottom: 0;
}


/* ==========================================================
   INTRO FEATURES
========================================================== */

.catalog-intro-features {
    display: flex;

    flex-direction: column;

    gap: 15px;
}

.catalog-feature {
    display: flex;

    align-items: flex-start;

    gap: 20px;

    padding: 25px;

    border:
        1px solid
        rgba(255, 255, 255, 0.07);

    border-radius: 18px;

    background:
        rgba(255, 255, 255, 0.025);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.catalog-feature:hover {
    transform: translateX(5px);

    border-color:
        rgba(199, 155, 106, 0.3);

    background:
        rgba(199, 155, 106, 0.04);
}

.catalog-feature-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    width: 52px;

    height: 52px;

    border-radius: 14px;

    background:
        rgba(199, 155, 106, 0.1);

    color: #c79b6a;

    font-size: 1.1rem;
}

.catalog-feature h3 {
    margin: 0 0 8px;

    color: #ffffff;

    font-size: 1rem;

    font-weight: 700;
}

.catalog-feature p {
    margin: 0;

    color: #8f969f;

    font-size: 0.88rem;

    line-height: 1.7;
}


/* ==========================================================
   KATALOG ÇEŞİTLERİ
========================================================== */

.catalog-types {
    padding: 110px 0;
}

.catalog-section-heading {
    max-width: 800px;

    margin:
        0 auto 60px;

    text-align: center;
}

.catalog-section-heading span {
    display: block;

    margin-bottom: 15px;

    color: #c79b6a;

    font-size: 0.78rem;

    font-weight: 700;

    letter-spacing: 2px;
}

.catalog-section-heading h2 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size:
        clamp(2.2rem, 4vw, 3.5rem);

    font-weight: 800;

    line-height: 1.15;
}

.catalog-section-heading p {
    margin: 0 auto;

    color: #aeb4bd;

    font-size: 0.98rem;

    line-height: 1.8;
}


/* ==========================================================
   KATALOG KARTLARI
========================================================== */

.catalog-types-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.catalog-type-card {
    overflow: hidden;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    border-radius: 22px;

    background:
        #171717;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.catalog-type-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(199, 155, 106, 0.35);

    box-shadow:
        0 25px 55px
        rgba(0, 0, 0, 0.3);
}


/* ==========================================================
   KATALOG KART GÖRSEL
========================================================== */

.catalog-type-image {
    position: relative;

    height: 260px;

    overflow: hidden;
}

.catalog-type-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.35),
            transparent 50%
        );
}

.catalog-type-image img {
    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}

.catalog-type-card:hover
.catalog-type-image img {
    transform: scale(1.07);
}


/* ==========================================================
   KATALOG KART İÇERİĞİ
========================================================== */

.catalog-type-content {
    padding: 30px;
}

.catalog-type-content > span {
    display: block;

    margin-bottom: 12px;

    color: #c79b6a;

    font-size: 0.78rem;

    font-weight: 700;

    letter-spacing: 1px;
}

.catalog-type-content h3 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 1.3rem;

    font-weight: 700;
}

.catalog-type-content p {
    min-height: 105px;

    margin: 0 0 25px;

    color: #999fa8;

    font-size: 0.9rem;

    line-height: 1.8;
}

.catalog-type-content a {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #c79b6a;

    text-decoration: none;

    font-size: 0.88rem;

    font-weight: 700;

    transition:
        gap 0.3s ease,
        color 0.3s ease;
}

.catalog-type-content a:hover {
    gap: 15px;

    color: #d8b486;
}


/* ==========================================================
   KATALOG SEÇENEKLERİ
========================================================== */

.catalog-options {
    padding: 110px 0;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.05);

    background:
        rgba(255, 255, 255, 0.015);
}

.catalog-options-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.catalog-option-card {
    position: relative;

    overflow: hidden;

    padding: 35px 30px;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    border-radius: 22px;

    background:
        #171717;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.catalog-option-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(199, 155, 106, 0.35);

    box-shadow:
        0 20px 45px
        rgba(0, 0, 0, 0.25);
}

.catalog-option-number {
    position: absolute;

    top: 20px;

    right: 25px;

    color:
        rgba(199, 155, 106, 0.2);

    font-size: 2rem;

    font-weight: 800;
}

.catalog-option-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 58px;

    height: 58px;

    margin-bottom: 25px;

    border-radius: 16px;

    background:
        rgba(199, 155, 106, 0.1);

    color: #c79b6a;

    font-size: 1.25rem;
}

.catalog-option-card h3 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 1.15rem;

    font-weight: 700;
}

.catalog-option-card > p {
    min-height: 130px;

    margin: 0 0 25px;

    color: #969da7;

    font-size: 0.88rem;

    line-height: 1.8;
}

.catalog-option-card ul {
    display: flex;

    flex-direction: column;

    gap: 10px;

    margin: 0;

    padding: 0;

    list-style: none;
}

.catalog-option-card li {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #c2c6cc;

    font-size: 0.85rem;
}

.catalog-option-card li i {
    color: #c79b6a;

    font-size: 0.75rem;
}


/* ==========================================================
   KATALOG BASKI SÜRECİ
========================================================== */

.catalog-process {
    padding: 110px 0;
}

.catalog-process-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);

    gap: 90px;

    align-items: start;
}

.catalog-process-content {
    position: sticky;

    top: 100px;
}

.catalog-process-content h2 {
    margin: 0 0 25px;

    color: #ffffff;

    font-size:
        clamp(2.2rem, 4vw, 3.5rem);

    font-weight: 800;

    line-height: 1.15;

    letter-spacing: -1px;
}

.catalog-process-content p {
    max-width: 550px;

    margin: 0;

    color: #aeb4bd;

    font-size: 0.98rem;

    line-height: 1.9;
}

.catalog-process-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 30px;

    padding: 15px 23px;

    border-radius: 12px;

    background: #c79b6a;

    color: #ffffff;

    text-decoration: none;

    font-size: 0.9rem;

    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.catalog-process-btn:hover {
    transform: translateY(-3px);

    background: #d8b486;

    box-shadow:
        0 12px 30px
        rgba(199, 155, 106, 0.25);
}


/* ==========================================================
   SÜREÇ ADIMLARI
========================================================== */

.catalog-process-steps {
    display: flex;

    flex-direction: column;

    gap: 20px;
}

.catalog-process-step {
    display: grid;

    grid-template-columns:
        70px
        1fr;

    gap: 25px;

    padding: 30px;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    border-radius: 20px;

    background:
        rgba(255, 255, 255, 0.025);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.catalog-process-step:hover {
    transform: translateX(7px);

    border-color:
        rgba(199, 155, 106, 0.3);

    background:
        rgba(199, 155, 106, 0.04);
}

.process-step-number {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 60px;

    height: 60px;

    border:
        1px solid
        rgba(199, 155, 106, 0.3);

    border-radius: 16px;

    background:
        rgba(199, 155, 106, 0.08);

    color: #c79b6a;

    font-size: 0.85rem;

    font-weight: 800;
}

.process-step-content h3 {
    margin: 5px 0 10px;

    color: #ffffff;

    font-size: 1.15rem;

    font-weight: 700;
}

.process-step-content p {
    margin: 0;

    color: #969da7;

    font-size: 0.9rem;

    line-height: 1.8;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1100px) {

    .catalog-hero-inner {
        gap: 45px;
    }

    .catalog-options-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .catalog-types-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .catalog-intro-grid {
        gap: 50px;
    }

    .catalog-process-grid {
        gap: 50px;
    }

}


/* ==========================================================
   TABLET / KÜÇÜK EKRAN
========================================================== */

@media (max-width: 900px) {

    .catalog-hero-inner {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .catalog-hero-content {
        max-width: 750px;

        text-align: center;

        margin: 0 auto;
    }

    .catalog-hero-content p {
        margin: 0 auto;
    }

    .catalog-hero-buttons {
        justify-content: center;
    }

    .catalog-hero-visual {
        min-height: 500px;
    }

    .catalog-image-main {
        width: 80%;
    }

    .catalog-intro-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .catalog-intro-content {
        text-align: center;
    }

    .catalog-intro-content h2,
    .catalog-intro-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .catalog-process-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .catalog-process-content {
        position: static;

        text-align: center;
    }

    .catalog-process-content p {
        margin-left: auto;
        margin-right: auto;
    }

}


/* ==========================================================
   MOBİL
========================================================== */

@media (max-width: 600px) {

    .catalog-hero {
        padding: 110px 0 75px;
    }

    .catalog-hero-content h1 {
        font-size: 2.5rem;

        letter-spacing: -0.5px;
    }

    .catalog-hero-content p {
        font-size: 0.95rem;
    }

    .catalog-hero-buttons {
        flex-direction: column;

        width: 100%;
    }

    .catalog-btn-primary,
    .catalog-btn-secondary {
        width: 100%;
    }

    .catalog-hero-visual {
        min-height: 400px;
    }

    .catalog-image-main {
        width: 90%;

        border-radius: 22px;
    }

    .catalog-image-main img {
        height: 450px;
    }

    .catalog-floating-card {
        left: 0;

        bottom: 20px;

        padding: 14px 16px;
    }

    .catalog-intro,
    .catalog-types,
    .catalog-options,
    .catalog-process {
        padding: 75px 0;
    }

    .catalog-section-heading {
        margin-bottom: 40px;
    }

    .catalog-section-heading h2 {
        font-size: 2rem;
    }

    .catalog-types-grid {
        grid-template-columns: 1fr;
    }

    .catalog-type-image {
        height: 240px;
    }

    .catalog-type-content {
        padding: 25px;
    }

    .catalog-type-content p {
        min-height: auto;
    }

    .catalog-options-grid {
        grid-template-columns: 1fr;
    }

    .catalog-option-card {
        padding: 30px 25px;
    }

    .catalog-option-card > p {
        min-height: auto;
    }

    .catalog-feature {
        padding: 20px;
    }

    .catalog-process-step {
        grid-template-columns: 1fr;

        gap: 18px;

        padding: 25px;
    }

    .process-step-number {
        width: 52px;

        height: 52px;
    }

}