/* =========================================================
   KAZDAL TOURS - SERVİS TANITIM ALANI
   ========================================================= */

.kazdal-service-section {
    position: relative;
    padding: 90px 20px;
    background:
        radial-gradient(
            circle at top right,
            rgba(226, 29, 38, 0.07),
            transparent 35%
        ),
        #ffffff;
    overflow: hidden;
}

.kazdal-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}


/* =========================================================
   ÜST BAŞLIK
   ========================================================= */

.kazdal-section-heading {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.kazdal-eyebrow,
.kazdal-small-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #e21d26;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.kazdal-section-heading h1 {
    margin: 0 0 20px;
    color: #202124;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -1px;
}

.kazdal-section-heading h1::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    margin: 20px auto 0;
    border-radius: 50px;
    background: #e21d26;
}

.kazdal-section-heading p {
    max-width: 820px;
    margin: 24px auto 0;
    color: #62666b;
    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   İKİ SÜTUN
   ========================================================= */

.kazdal-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.kazdal-content-column,
.kazdal-services-column {
    min-width: 0;
}

.kazdal-content-column h2,
.kazdal-services-column > h2 {
    margin: 0 0 18px;
    color: #202124;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 800;
}

.kazdal-content-column > p {
    margin: 0 0 18px;
    color: #60656a;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   ÖZELLİKLER
   ========================================================= */

.kazdal-feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.kazdal-feature {
    display: flex;
    gap: 17px;
    padding: 20px;
    border: 1px solid #eeeeee;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.045);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.kazdal-feature:hover {
    transform: translateY(-3px);
    border-color: rgba(226, 29, 38, 0.25);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.kazdal-feature-icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #fff1f2;
}

.kazdal-feature-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: #e21d26;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.kazdal-feature h3 {
    margin: 2px 0 6px;
    color: #252525;
    font-size: 17px;
    font-weight: 800;
}

.kazdal-feature p {
    margin: 0;
    color: #70757a;
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   SAĞ HİZMETLER
   ========================================================= */

.kazdal-services-intro {
    margin: 0 0 25px;
    color: #666b70;
    font-size: 15px;
    line-height: 1.7;
}

.kazdal-service-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 13px;
    padding: 19px 22px;
    color: inherit;
    text-decoration: none;
    border: 1px solid #eeeeee;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.045);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.kazdal-service-card:hover {
    transform: translateX(5px);
    border-color: rgba(226, 29, 38, 0.35);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.kazdal-service-number {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #e21d26;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
}

.kazdal-service-card h3 {
    margin: 0 0 5px;
    color: #242424;
    font-size: 16px;
    font-weight: 800;
}

.kazdal-service-card p {
    margin: 0;
    color: #74787d;
    font-size: 13px;
    line-height: 1.5;
}

.kazdal-arrow {
    margin-left: auto;
    color: #e21d26;
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.2s ease;
}

.kazdal-service-card:hover .kazdal-arrow {
    transform: translateX(5px);
}


/* =========================================================
   WHATSAPP CTA
   ========================================================= */

.kazdal-whatsapp-box {
    position: relative;
    margin-top: 25px;
    padding: 30px;
    overflow: hidden;
    border-radius: 22px;
    background:
        linear-gradient(
            135deg,
            #e21d26 0%,
            #c9141d 100%
        );
    box-shadow: 0 18px 40px rgba(226, 29, 38, 0.22);
}

.kazdal-whatsapp-box::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -70px;
    top: -80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.kazdal-whatsapp-box::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    left: -60px;
    bottom: -70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.kazdal-whatsapp-content {
    position: relative;
    z-index: 2;
}

.kazdal-whatsapp-label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.kazdal-whatsapp-box h2 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 25px;
    line-height: 1.25;
    font-weight: 800;
}

.kazdal-whatsapp-box p {
    max-width: 570px;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   WHATSAPP BUTONU
   ========================================================= */

.kazdal-whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 12px 21px;
    border-radius: 12px;
    background: #ffffff;
    color: #bd1620;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.kazdal-whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}

.kazdal-whatsapp-icon {
    width: 25px;
    height: 25px;
    fill: currentColor;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .kazdal-service-section {
        padding: 70px 18px;
    }

    .kazdal-service-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .kazdal-section-heading {
        margin-bottom: 45px;
    }

    .kazdal-section-heading h1 {
        font-size: 36px;
    }

}


/* =========================================================
   MOBİL
   ========================================================= */

@media (max-width: 600px) {

    .kazdal-service-section {
        padding: 55px 15px;
    }

    .kazdal-section-heading h1 {
        font-size: 29px;
    }

    .kazdal-section-heading p {
        font-size: 15px;
        line-height: 1.7;
    }

    .kazdal-content-column h2,
    .kazdal-services-column > h2 {
        font-size: 25px;
    }

    .kazdal-feature {
        padding: 16px;
    }

    .kazdal-feature-icon {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
    }

    .kazdal-feature-icon svg {
        width: 23px;
        height: 23px;
    }

    .kazdal-service-card {
        padding: 16px;
    }

    .kazdal-service-number {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
    }

    .kazdal-service-card p {
        font-size: 12px;
    }

    .kazdal-arrow {
        display: none;
    }

    .kazdal-whatsapp-box {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .kazdal-whatsapp-box h2 {
        font-size: 22px;
    }

    .kazdal-whatsapp-button {
        width: 100%;
    }

}
/* =========================================================
   KAZDAL TOURS - WHATSAPP REZERVASYON CTA
   ========================================================= */

.kazdal-wa-cta {
    width: 100%;
    max-width: 1050px;
    margin: 25px auto;
    padding: 16px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    box-sizing: border-box;

    text-decoration: none;

    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #f8faf9 45%,
        #f1f7f3 100%
    );

    border: 1px solid rgba(34, 197, 94, 0.18);
    border-radius: 18px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.07),
        0 2px 8px rgba(0, 0, 0, 0.04);

    position: relative;
    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* Üstte ince renk çizgisi */

.kazdal-wa-cta::before {
    content: "";
    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(
        90deg,
        #e21b23,
        #25d366,
        #e21b23
    );
}


/* Hafif arka plan efekti */

.kazdal-wa-cta::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -90px;
    bottom: -110px;

    background: rgba(37, 211, 102, 0.08);

    border-radius: 50%;

    pointer-events: none;
}


/* Hover */

.kazdal-wa-cta:hover {
    transform: translateY(-3px);

    border-color: rgba(37, 211, 102, 0.35);

    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.10),
        0 5px 15px rgba(37, 211, 102, 0.08);
}


/* Sol alan */

.kazdal-wa-left {
    display: flex;
    align-items: center;
    gap: 15px;

    min-width: 0;

    position: relative;
    z-index: 2;
}


/* WhatsApp ikon alanı */

.kazdal-wa-icon {
    width: 54px;
    height: 54px;

    flex: 0 0 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25d366;

    color: #ffffff;

    border-radius: 15px;

    font-size: 28px;

    box-shadow:
        0 6px 15px rgba(37, 211, 102, 0.25);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.kazdal-wa-cta:hover .kazdal-wa-icon {
    transform: scale(1.07) rotate(-3deg);

    box-shadow:
        0 8px 20px rgba(37, 211, 102, 0.35);
}


/* Yazı alanı */

.kazdal-wa-content {
    display: flex;
    flex-direction: column;

    gap: 4px;

    min-width: 0;
}


.kazdal-wa-content span {
    color: #17211b;

    font-size: 17px;
    font-weight: 800;

    line-height: 1.25;

    letter-spacing: -0.2px;
}


.kazdal-wa-content small {
    color: #68736c;

    font-size: 13px;
    font-weight: 500;

    line-height: 1.4;
}


/* Sağ buton */

.kazdal-wa-right {
    min-height: 46px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    flex-shrink: 0;

    background: #25d366;

    color: #ffffff;

    border-radius: 12px;

    font-size: 14px;
    font-weight: 800;

    white-space: nowrap;

    box-shadow:
        0 6px 16px rgba(37, 211, 102, 0.20);

    position: relative;
    z-index: 2;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.kazdal-wa-right i {
    font-size: 13px;

    transition:
        transform 0.3s ease;
}


.kazdal-wa-cta:hover .kazdal-wa-right {
    background: #1fbd59;

    transform: translateX(-2px);

    box-shadow:
        0 8px 20px rgba(37, 211, 102, 0.28);
}


.kazdal-wa-cta:hover .kazdal-wa-right i {
    transform: translateX(4px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 768px) {

    .kazdal-wa-cta {
        margin: 20px 12px;

        width: calc(100% - 24px);

        padding: 14px;

        border-radius: 15px;

        gap: 12px;
    }


    .kazdal-wa-icon {
        width: 48px;
        height: 48px;

        flex-basis: 48px;

        border-radius: 13px;

        font-size: 24px;
    }


    .kazdal-wa-content span {
        font-size: 15px;
    }


    .kazdal-wa-content small {
        font-size: 12px;
    }


    .kazdal-wa-right {
        padding: 0 15px;

        min-height: 42px;

        font-size: 13px;
    }

}


/* =========================================================
   MOBİL
   ========================================================= */

@media (max-width: 520px) {

    .kazdal-wa-cta {
        align-items: center;

        padding: 13px;

        gap: 10px;
    }


    .kazdal-wa-left {
        gap: 11px;
    }


    .kazdal-wa-icon {
        width: 45px;
        height: 45px;

        flex-basis: 45px;

        font-size: 22px;

        border-radius: 12px;
    }


    .kazdal-wa-content span {
        font-size: 14px;
    }


    .kazdal-wa-content small {
        display: none;
    }


    .kazdal-wa-right {
        padding: 0 12px;

        min-height: 40px;

        border-radius: 10px;

        font-size: 12px;
    }


    .kazdal-wa-right i {
        display: none;
    }

}


/* =========================================================
   ÇOK DAR EKRAN
   ========================================================= */

@media (max-width: 360px) {

    .kazdal-wa-content span {
        font-size: 13px;
    }


    .kazdal-wa-right {
        padding: 0 9px;

        font-size: 11px;
    }

}
/* =========================================================
   KAZDAL TOURS - INSTAGRAM CTA
   WhatsApp butonunun altına eklenir
   ========================================================= */

.kazdal-instagram-cta {
    width: 100%;
    max-width: 1050px;

    margin: 12px auto 25px;
    padding: 16px 20px;

    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    text-decoration: none;

    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #fcf8fb 50%,
        #f8f3f8 100%
    );

    border: 1px solid rgba(193, 53, 132, 0.16);

    border-radius: 18px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(193, 53, 132, 0.04);

    position: relative;
    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* Üst renk çizgisi */

.kazdal-instagram-cta::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(
        90deg,
        #833ab4,
        #fd1d1d,
        #fcb045
    );
}


/* Arka plan dekoratif daire */

.kazdal-instagram-cta::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -90px;
    bottom: -110px;

    background: rgba(193, 53, 132, 0.07);

    border-radius: 50%;

    pointer-events: none;
}


/* Hover */

.kazdal-instagram-cta:hover {
    transform: translateY(-3px);

    border-color: rgba(193, 53, 132, 0.30);

    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.09),
        0 5px 15px rgba(193, 53, 132, 0.08);
}


/* Sol alan */

.kazdal-instagram-left {
    display: flex;
    align-items: center;

    gap: 15px;

    min-width: 0;

    position: relative;
    z-index: 2;
}


/* Instagram ikon */

.kazdal-instagram-icon {
    width: 54px;
    height: 54px;

    flex: 0 0 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    color: #ffffff;

    font-size: 28px;

    background: linear-gradient(
        135deg,
        #833ab4 0%,
        #c13584 35%,
        #fd1d1d 70%,
        #fcb045 100%
    );

    box-shadow:
        0 6px 16px rgba(193, 53, 132, 0.25);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.kazdal-instagram-cta:hover .kazdal-instagram-icon {
    transform: scale(1.07) rotate(-3deg);

    box-shadow:
        0 8px 22px rgba(193, 53, 132, 0.35);
}


/* İçerik */

.kazdal-instagram-content {
    display: flex;
    flex-direction: column;

    gap: 4px;

    min-width: 0;
}


.kazdal-instagram-content span {
    color: #19151a;

    font-size: 17px;
    font-weight: 800;

    line-height: 1.25;

    letter-spacing: -0.2px;
}


.kazdal-instagram-content small {
    color: #756d74;

    font-size: 13px;
    font-weight: 500;

    line-height: 1.4;
}


/* Sağ buton */

.kazdal-instagram-right {
    min-height: 46px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    flex-shrink: 0;

    background: linear-gradient(
        135deg,
        #833ab4,
        #c13584,
        #fd1d1d
    );

    color: #ffffff;

    border-radius: 12px;

    font-size: 14px;
    font-weight: 800;

    white-space: nowrap;

    box-shadow:
        0 6px 16px rgba(193, 53, 132, 0.20);

    position: relative;
    z-index: 2;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.kazdal-instagram-right i {
    font-size: 13px;

    transition:
        transform 0.3s ease;
}


.kazdal-instagram-cta:hover .kazdal-instagram-right {
    transform: translateX(-2px);

    box-shadow:
        0 8px 22px rgba(193, 53, 132, 0.30);
}


.kazdal-instagram-cta:hover .kazdal-instagram-right i {
    transform: translateX(4px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 768px) {

    .kazdal-instagram-cta {
        width: calc(100% - 24px);

        margin: 10px 12px 20px;

        padding: 14px;

        border-radius: 15px;

        gap: 12px;
    }


    .kazdal-instagram-icon {
        width: 48px;
        height: 48px;

        flex-basis: 48px;

        border-radius: 13px;

        font-size: 24px;
    }


    .kazdal-instagram-content span {
        font-size: 15px;
    }


    .kazdal-instagram-content small {
        font-size: 12px;
    }


    .kazdal-instagram-right {
        min-height: 42px;

        padding: 0 15px;

        font-size: 13px;
    }

}


/* =========================================================
   MOBİL
   ========================================================= */

@media (max-width: 520px) {

    .kazdal-instagram-cta {
        padding: 13px;

        gap: 10px;
    }


    .kazdal-instagram-left {
        gap: 11px;
    }


    .kazdal-instagram-icon {
        width: 45px;
        height: 45px;

        flex-basis: 45px;

        border-radius: 12px;

        font-size: 22px;
    }


    .kazdal-instagram-content span {
        font-size: 14px;
    }


    .kazdal-instagram-content small {
        display: none;
    }


    .kazdal-instagram-right {
        min-height: 40px;

        padding: 0 12px;

        border-radius: 10px;

        font-size: 12px;
    }


    .kazdal-instagram-right i {
        display: none;
    }

}


/* =========================================================
   ÇOK DAR EKRAN
   ========================================================= */

@media (max-width: 360px) {

    .kazdal-instagram-content span {
        font-size: 13px;
    }


    .kazdal-instagram-right {
        padding: 0 9px;

        font-size: 11px;
    }

}
/* =========================================================
   KAZDAL TOURS
   WHATSAPP + INSTAGRAM İLETİŞİM ALANI
   ========================================================= */

.kazdal-contact-box {
    width: 100%;
    max-width: 1050px;

    margin: 25px auto;

    padding: 22px;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 20px;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.07);
}


/* BAŞLIK */

.kazdal-contact-header {
    text-align: center;

    margin-bottom: 18px;
}


.kazdal-contact-header strong {
    display: block;

    color: #18201b;

    font-size: 19px;
    font-weight: 800;

    line-height: 1.3;
}


.kazdal-contact-header span {
    display: block;

    margin-top: 5px;

    color: #737a75;

    font-size: 13px;
}


/* BUTONLAR */

.kazdal-contact-buttons {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px;
}


/* ORTAK BUTON */

.kazdal-contact-item {
    min-height: 76px;

    padding: 11px 14px;

    box-sizing: border-box;

    display: flex;
    align-items: center;

    gap: 13px;

    text-decoration: none;

    background: #fafafa;

    border: 1px solid #eeeeee;

    border-radius: 15px;

    position: relative;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.kazdal-contact-item:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.08);
}


/* İKON */

.kazdal-contact-icon {
    width: 50px;
    height: 50px;

    flex: 0 0 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    color: #ffffff;

    font-size: 25px;
}


/* WHATSAPP */

.kazdal-contact-whatsapp {
    border-color: rgba(37, 211, 102, 0.15);
}


.kazdal-contact-whatsapp .kazdal-contact-icon {
    background: #25d366;

    box-shadow:
        0 5px 15px rgba(37, 211, 102, 0.22);
}


.kazdal-contact-whatsapp:hover {
    border-color: rgba(37, 211, 102, 0.35);
}


/* INSTAGRAM */

.kazdal-contact-instagram {
    border-color: rgba(193, 53, 132, 0.15);
}


.kazdal-contact-instagram .kazdal-contact-icon {
    background: linear-gradient(
        135deg,
        #833ab4,
        #c13584,
        #fd1d1d,
        #fcb045
    );

    box-shadow:
        0 5px 15px rgba(193, 53, 132, 0.22);
}


.kazdal-contact-instagram:hover {
    border-color: rgba(193, 53, 132, 0.35);
}


/* METİN */

.kazdal-contact-text {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 3px;

    flex: 1;
}


.kazdal-contact-text strong {
    color: #202522;

    font-size: 15px;
    font-weight: 800;

    line-height: 1.3;
}


.kazdal-contact-text small {
    color: #747b76;

    font-size: 12px;

    line-height: 1.3;
}


/* OK */

.kazdal-contact-arrow {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #ffffff;

    color: #8a918c;

    font-size: 12px;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.kazdal-contact-item:hover .kazdal-contact-arrow {
    transform: translateX(4px);
}


/* WHATSAPP OK */

.kazdal-contact-whatsapp:hover .kazdal-contact-arrow {
    color: #25d366;
}


/* INSTAGRAM OK */

.kazdal-contact-instagram:hover .kazdal-contact-arrow {
    color: #c13584;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 700px) {

    .kazdal-contact-box {
        margin: 20px 12px;

        width: calc(100% - 24px);

        padding: 18px;

        border-radius: 17px;
    }


    .kazdal-contact-buttons {
        grid-template-columns: 1fr;
    }


    .kazdal-contact-item {
        min-height: 68px;
    }

}


/* =========================================================
   MOBİL
   ========================================================= */

@media (max-width: 480px) {

    .kazdal-contact-box {
        padding: 15px;
    }


    .kazdal-contact-header {
        margin-bottom: 14px;
    }


    .kazdal-contact-header strong {
        font-size: 17px;
    }


    .kazdal-contact-header span {
        font-size: 12px;
    }


    .kazdal-contact-item {
        min-height: 64px;

        padding: 9px 11px;

        gap: 11px;

        border-radius: 13px;
    }


    .kazdal-contact-icon {
        width: 45px;
        height: 45px;

        flex-basis: 45px;

        font-size: 22px;

        border-radius: 11px;
    }


    .kazdal-contact-text strong {
        font-size: 14px;
    }


    .kazdal-contact-text small {
        font-size: 11px;
    }


    .kazdal-contact-arrow {
        width: 30px;
        height: 30px;

        flex-basis: 30px;
    }

}
.urunu-incele-buton {
  background-color: #C80403;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: #ffffff !important;
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  line-height: 1;
}

.urunu-incele-buton:hover {
  background-color: #A90302;
  transform: scale(1.05);
  color: #ffffff !important;
  box-shadow: 0 5px 12px rgba(200, 4, 3, 0.25);
}
:root {
    --kazdal-main: #C80403;
    --kazdal-main-hover: #A90302;
    --kazdal-gradient: linear-gradient(135deg, #C80403 0%, #8F0202 100%);
    --input-bg: #fdfdfd;
    --text-color: #334155;
}