/* ==========================================================
   KUZEY MATBAACILIK
   İLETİŞİM SAYFASI
========================================================== */


/* ==========================================================
   CONTACT HERO
========================================================== */

.contact-hero {
    position: relative;

    padding: 150px 0 90px;

    text-align: center;
}

.contact-hero .container {
    position: relative;

    z-index: 2;
}

.contact-tag {
    display: inline-block;

    margin-bottom: 25px;

    padding: 8px 20px;

    border: 1px solid rgba(199, 155, 106, 0.25);

    border-radius: 50px;

    background: rgba(199, 155, 106, 0.08);

    color: #c79b6a;

    font-size: 0.8rem;

    font-weight: 700;

    letter-spacing: 2px;
}

.contact-hero h1 {
    max-width: 900px;

    margin: 0 auto 25px;

    color: #ffffff;

    font-size: clamp(2.5rem, 5vw, 4.5rem);

    font-weight: 800;

    line-height: 1.1;

    letter-spacing: -1px;
}

.contact-hero p {
    max-width: 760px;

    margin: 0 auto;

    color: #aeb4bd;

    font-size: 1.05rem;

    line-height: 1.9;
}


/* ==========================================================
   İLETİŞİM BİLGİ KARTLARI
========================================================== */

.contact-info-section {
    padding: 70px 0 100px;
}

.contact-info-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.contact-info-card {
    display: flex;

    flex-direction: column;

    min-height: 250px;

    padding: 30px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.06),
            rgba(255, 255, 255, 0.025)
        );

    text-decoration: none;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;

    backdrop-filter: blur(10px);
}

.contact-info-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(199, 155, 106, 0.4);

    box-shadow:
        0 20px 45px
        rgba(0, 0, 0, 0.25);
}


/* ==========================================================
   İLETİŞİM İKONLARI
========================================================== */

.contact-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 60px;

    height: 60px;

    margin-bottom: 25px;

    border-radius: 18px;

    background:
        rgba(199, 155, 106, 0.1);

    color: #c79b6a;

    font-size: 1.4rem;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    transform: translateY(-3px);

    background: #c79b6a;

    color: #ffffff;
}


/* ==========================================================
   İLETİŞİM KARTI İÇERİĞİ
========================================================== */

.contact-info-content {
    display: flex;

    flex-direction: column;

    height: 100%;
}

.contact-info-content span {
    display: block;

    margin-bottom: 10px;

    color: #c79b6a;

    font-size: 0.78rem;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.contact-info-content h3 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: 1.05rem;

    font-weight: 700;

    line-height: 1.5;

    word-break: break-word;
}

.contact-info-content p {
    margin: 0;

    color: #969da7;

    font-size: 0.9rem;

    line-height: 1.7;
}


/* ==========================================================
   CONTACT MAIN
========================================================== */

.contact-main {
    padding: 100px 0;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.05);

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.05);
}

.contact-main-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 70px;

    align-items: start;
}


/* ==========================================================
   BÖLÜM BAŞLIĞI
========================================================== */

.contact-section-heading {
    margin-bottom: 35px;
}

.contact-section-heading span {
    display: block;

    margin-bottom: 15px;

    color: #c79b6a;

    font-size: 0.78rem;

    font-weight: 700;

    letter-spacing: 2px;
}

.contact-section-heading h2 {
    margin: 0 0 18px;

    color: #ffffff;

    font-size: clamp(2rem, 3vw, 2.8rem);

    font-weight: 800;

    line-height: 1.2;
}

.contact-section-heading p {
    max-width: 650px;

    margin: 0;

    color: #aeb4bd;

    font-size: 0.98rem;

    line-height: 1.85;
}


/* ==========================================================
   ORTALANMIŞ BAŞLIK
========================================================== */

.contact-section-heading.centered {
    max-width: 800px;

    margin:
        0 auto 60px;

    text-align: center;
}

.contact-section-heading.centered p {
    margin: 0 auto;
}


/* ==========================================================
   CONTACT FORM
========================================================== */

.contact-form-wrapper {
    padding: 40px;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.06),
            rgba(255, 255, 255, 0.025)
        );

    box-shadow:
        0 25px 60px
        rgba(0, 0, 0, 0.2);

    backdrop-filter: blur(12px);
}

.contact-form {
    display: flex;

    flex-direction: column;

    gap: 22px;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 9px;
}

.form-group label {
    color: #d4d8de;

    font-size: 0.9rem;

    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 15px 17px;

    border:
        1px solid
        rgba(255, 255, 255, 0.1);

    border-radius: 12px;

    outline: none;

    background:
        rgba(0, 0, 0, 0.18);

    color: #ffffff;

    font-family: inherit;

    font-size: 0.95rem;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #777e88;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #c79b6a;

    background:
        rgba(199, 155, 106, 0.04);

    box-shadow:
        0 0 0 3px
        rgba(199, 155, 106, 0.08);
}

.form-group textarea {
    min-height: 170px;

    resize: vertical;
}


/* ==========================================================
   FORM GÖNDER BUTONU
========================================================== */

.contact-submit {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    width: 100%;

    margin-top: 5px;

    padding: 16px 25px;

    border: none;

    border-radius: 12px;

    cursor: pointer;

    background: #c79b6a;

    color: #ffffff;

    font-family: inherit;

    font-size: 0.95rem;

    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-submit:hover {
    transform: translateY(-3px);

    background: #d8b486;

    box-shadow:
        0 12px 30px
        rgba(199, 155, 106, 0.25);
}


/* ==========================================================
   GOOGLE MAP
========================================================== */

.contact-map-wrapper {
    min-width: 0;
}

.contact-map {
    width: 100%;

    overflow: hidden;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    border-radius: 22px;

    background: #171717;

    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, 0.25);
}

.contact-map iframe {
    display: block;

    width: 100%;

    min-height: 500px;

    filter:
        grayscale(0.8)
        contrast(1.05);
}


/* ==========================================================
   NEDEN KUZEY MATBAACILIK
========================================================== */

.contact-benefits {
    padding: 110px 0;
}

.benefits-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;
}

.benefit-card {
    position: relative;

    padding: 35px;

    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;
}

.benefit-card::before {
    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 3px;

    background: #c79b6a;

    transform: scaleX(0);

    transform-origin: left;

    transition:
        transform 0.35s ease;
}

.benefit-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(199, 155, 106, 0.35);

    box-shadow:
        0 20px 45px
        rgba(0, 0, 0, 0.25);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}


/* ==========================================================
   AVANTAJ İKONLARI
========================================================== */

.benefit-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 60px;

    height: 60px;

    margin-bottom: 25px;

    border-radius: 17px;

    background:
        rgba(199, 155, 106, 0.1);

    color: #c79b6a;

    font-size: 1.4rem;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: rotate(-5deg);

    background: #c79b6a;

    color: #ffffff;
}

.benefit-card h3 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 1.2rem;

    font-weight: 700;
}

.benefit-card p {
    margin: 0;

    color: #aeb4bd;

    font-size: 0.92rem;

    line-height: 1.8;
}


/* ==========================================================
   WHATSAPP CTA
========================================================== */

.contact-cta {
    padding: 40px 0 110px;
}

.contact-cta-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

    padding: 55px 60px;

    border:
        1px solid
        rgba(199, 155, 106, 0.25);

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(199, 155, 106, 0.12),
            transparent 45%
        ),

        rgba(255, 255, 255, 0.03);
}

.contact-cta-content {
    max-width: 700px;
}

.contact-cta-content span {
    display: block;

    margin-bottom: 15px;

    color: #c79b6a;

    font-size: 0.78rem;

    font-weight: 700;

    letter-spacing: 2px;
}

.contact-cta-content h2 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: clamp(2rem, 4vw, 3rem);

    font-weight: 800;

    line-height: 1.2;
}

.contact-cta-content p {
    max-width: 650px;

    margin: 0;

    color: #aeb4bd;

    line-height: 1.8;
}


/* ==========================================================
   WHATSAPP CTA BUTONU
========================================================== */

.contact-cta-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    flex-shrink: 0;

    padding: 17px 28px;

    border-radius: 12px;

    background: #c79b6a;

    color: #ffffff;

    text-decoration: none;

    font-size: 0.95rem;

    font-weight: 700;

    white-space: nowrap;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-cta-button:hover {
    transform: translateY(-3px);

    background: #d8b486;

    box-shadow:
        0 12px 30px
        rgba(199, 155, 106, 0.25);
}


/* ==========================================================
   KUZEY MATBAACILIK
   İLETİŞİM SAYFASI
   RESPONSIVE / MOBİL UYUMLULUK
========================================================== */


/* ==========================================================
   TABLET
   1100px VE ALTI
========================================================== */

@media (max-width:1100px){

    /* İletişim kartları */
    .contact-info-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:20px;
    }

    /* Avantaj kartları */
    .benefits-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:20px;
    }

    /* Ana iletişim alanı */
    .contact-main-grid{
        gap:40px;
    }

}


/* ==========================================================
   TABLET / KÜÇÜK EKRAN
   900px VE ALTI
========================================================== */

@media (max-width:900px){

    /* Form + Harita alt alta */
    .contact-main-grid{
        grid-template-columns:1fr;
        gap:45px;
    }

    /* Harita */
    .contact-map-wrapper{
        width:100%;
        margin-top:20px;
    }

    .contact-map{
        width:100%;
        max-width:100%;
    }

    .contact-map iframe{
        width:100%;
        max-width:100%;
    }

    /* WhatsApp CTA */
    .contact-cta-inner{
        flex-direction:column;
        align-items:flex-start;
        gap:30px;
        padding:45px 35px;
    }

}


/* ==========================================================
   MOBİL
   600px VE ALTI
========================================================== */

@media (max-width:600px){

    /* ======================================================
       GENEL
    ====================================================== */

    .contact-hero,
    .contact-info-section,
    .contact-main,
    .contact-benefits,
    .contact-cta{
        width:100%;
        max-width:100%;
    }


    /* ======================================================
       HERO
    ====================================================== */

    .contact-hero{
        padding:110px 0 60px;
    }

    .contact-tag{
        margin-bottom:18px;
        padding:7px 15px;
        font-size:.7rem;
        letter-spacing:1.5px;
    }

    .contact-hero h1{
        width:100%;
        max-width:100%;
        font-size:clamp(2rem,9vw,2.4rem);
        line-height:1.1;
        letter-spacing:-.5px;
        margin-bottom:18px;
    }

    .contact-hero p{
        width:100%;
        max-width:100%;
        font-size:.92rem;
        line-height:1.75;
    }


    /* ======================================================
       3 İLETİŞİM KARTI
       KESİN OLARAK ALT ALTA
    ====================================================== */

    .contact-info-section{
        padding:55px 0 65px;
    }

    .contact-info-grid{
        display:grid;
        grid-template-columns:1fr !important;
        gap:15px;
        width:100%;
        max-width:100%;
    }

    .contact-info-card{
        display:flex;
        flex-direction:column;

        width:100%;
        max-width:100%;
        min-width:0;
        min-height:auto;

        padding:24px;
        box-sizing:border-box;

        border-radius:18px;
    }

    .contact-icon{
        width:52px;
        height:52px;

        margin-bottom:20px;

        border-radius:15px;

        font-size:1.2rem;
    }

    .contact-info-content{
        width:100%;
        max-width:100%;
        min-width:0;
    }

    .contact-info-content span{
        font-size:.7rem;
        letter-spacing:1.2px;
        margin-bottom:8px;
    }

    .contact-info-content h3{
        font-size:.95rem;
        line-height:1.5;
        word-break:break-word;
        overflow-wrap:anywhere;
    }

    .contact-info-content p{
        font-size:.84rem;
        line-height:1.65;
        word-break:break-word;
        overflow-wrap:anywhere;
    }


    /* ======================================================
       ANA İLETİŞİM ALANI
       FORM + HARİTA ALT ALTA
    ====================================================== */

    .contact-main{
        padding:60px 0;
    }

    .contact-main-grid{
        display:grid;
        grid-template-columns:1fr !important;
        gap:40px;

        width:100%;
        max-width:100%;
    }


    /* ======================================================
       BAŞLIK
    ====================================================== */

    .contact-section-heading{
        width:100%;
        max-width:100%;
        margin-bottom:25px;
    }

    .contact-section-heading span{
        font-size:.7rem;
        letter-spacing:1.5px;
        margin-bottom:10px;
    }

    .contact-section-heading h2{
        font-size:1.8rem;
        line-height:1.2;
        margin-bottom:14px;
    }

    .contact-section-heading p{
        width:100%;
        max-width:100%;
        font-size:.88rem;
        line-height:1.75;
    }


    /* ======================================================
       FORM KUTUSU
    ====================================================== */

    .contact-form-wrapper{
        width:100%;
        max-width:100%;
        min-width:0;

        padding:22px 18px;

        box-sizing:border-box;

        border-radius:18px;
    }

    .contact-form{
        width:100%;
        max-width:100%;
    }

    .form-group{
        width:100%;
        max-width:100%;
    }

    .form-group input,
    .form-group textarea{
        display:block;

        width:100%;
        max-width:100%;
        min-width:0;

        box-sizing:border-box;

        padding:13px 14px;

        font-size:.9rem;
        border-radius:10px;
    }

    .form-group textarea{
        min-height:140px;
    }

    .contact-submit{
        width:100%;
        padding:14px 20px;

        font-size:.9rem;
        border-radius:10px;
    }


    /* ======================================================
       HARİTA
    ====================================================== */

    .contact-map-wrapper{
        width:100%;
        max-width:100%;
        min-width:0;
        margin-top:0;
    }

    .contact-map{
        width:100%;
        max-width:100%;

        overflow:hidden;
        border-radius:18px;
    }

    .contact-map iframe{
        display:block;

        width:100%;
        max-width:100%;

        min-height:350px;

        border:0;
    }


    /* ======================================================
       AVANTAJLAR
    ====================================================== */

    .contact-benefits{
        padding:65px 0;
    }

    .benefits-grid{
        display:grid;
        grid-template-columns:1fr !important;

        gap:15px;

        width:100%;
        max-width:100%;
    }

    .benefit-card{
        width:100%;
        max-width:100%;
        min-width:0;

        padding:24px;
        box-sizing:border-box;

        border-radius:18px;
    }

    .benefit-icon{
        width:52px;
        height:52px;

        margin-bottom:20px;

        border-radius:14px;

        font-size:1.2rem;
    }

    .benefit-card h3{
        font-size:1.05rem;
        margin-bottom:10px;
    }

    .benefit-card p{
        font-size:.86rem;
        line-height:1.7;
    }


    /* ======================================================
       WHATSAPP CTA
    ====================================================== */

    .contact-cta{
        padding:15px 0 65px;
    }

    .contact-cta-inner{
        display:flex;
        flex-direction:column;
        align-items:flex-start;

        width:100%;
        max-width:100%;

        gap:25px;

        padding:30px 22px;

        box-sizing:border-box;

        border-radius:20px;
    }

    .contact-cta-content{
        width:100%;
        max-width:100%;
        min-width:0;
    }

    .contact-cta-content span{
        font-size:.7rem;
        letter-spacing:1.5px;
        margin-bottom:10px;
    }

    .contact-cta-content h2{
        font-size:1.8rem;
        line-height:1.2;
        margin-bottom:12px;
    }

    .contact-cta-content p{
        width:100%;
        max-width:100%;
        font-size:.88rem;
        line-height:1.7;
    }

    .contact-cta-button{
        width:100%;
        max-width:100%;

        box-sizing:border-box;

        padding:14px 20px;

        font-size:.9rem;
        border-radius:10px;
    }

}


/* ==========================================================
   KÜÇÜK TELEFON
   390px VE ALTI
========================================================== */

@media (max-width:390px){

    .contact-hero{
        padding:100px 0 50px;
    }

    .contact-hero h1{
        font-size:2rem;
    }

    .contact-hero p{
        font-size:.88rem;
    }


    /* İletişim kartları */

    .contact-info-card{
        padding:22px;
    }

    .contact-info-content h3{
        font-size:.92rem;
    }

    .contact-info-content p{
        font-size:.82rem;
    }


    /* Ana iletişim */

    .contact-main{
        padding:50px 0;
    }


    /* Form */

    .contact-form-wrapper{
        padding:20px 16px;
    }

    .contact-section-heading h2{
        font-size:1.65rem;
    }


    /* Harita */

    .contact-map iframe{
        min-height:300px;
    }


    /* Avantajlar */

    .benefit-card{
        padding:22px;
    }


    /* CTA */

    .contact-cta-inner{
        padding:27px 18px;
    }

    .contact-cta-content h2{
        font-size:1.65rem;
    }

}