.itp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.service-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.service-box:hover {
    transform: translateY(-8px);
}

.service-box h3 {
    margin-bottom: 15px;
    color: #1d3557;
}

.itp-page {
    font-family: inherit;
    padding-bottom: 84px;
}

.itp-section {
    padding: 54px 20px;
}

.itp-section-head {
    max-width: 760px;
}

.itp-section-head h2 {
    margin: 0 0 12px;
    color: #1d3557;
}

.itp-section-head p {
    margin: 0;
    color: #4b5563;
    line-height: 1.7;
}

.itp-hero {
    padding: 42px 0 18px;
    position: relative;
    color: #111827;
    z-index: 1;
}

.itp-hero .itp-container {
    position: relative;
    z-index: 1;
}

.itp-hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
}

.itp-hero-media {
    position: relative;
    z-index: 2;
}

.itp-hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.itp-hero-content {
    position: relative;
    z-index: 2;
}

.itp-hero-content h1 {
    font-size: 34px;
    line-height: 1.15;
    margin: 0 0 14px;
    text-shadow: none;
}

.itp-hero-content p {
    font-size: 16px;
    line-height: 1.75;
    margin: 0 0 18px;
    opacity: 0.98;
    text-shadow: none;
}

.itp-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.itp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.18s ease;
    line-height: 1;
    transition: 0.2s;
}

.itp-btn-primary {
    background: #f59e0b;
    color: #111827;
}

.itp-btn-primary:hover {
    filter: brightness(0.96);
}

.itp-btn-secondary {
    background: #16a34a;
    color: #ffffff;
    border: 1px solid rgba(22, 163, 74, 0.35);
}

.itp-btn-secondary:hover {
    filter: brightness(0.96);
}

.itp-btn-whatsapp .itp-wa-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    flex: 0 0 18px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23ffffff' d='M19.11 17.31c-.27-.14-1.61-.8-1.86-.89-.25-.09-.43-.14-.61.14-.18.27-.7.89-.86 1.07-.16.18-.32.2-.59.07-.27-.14-1.15-.42-2.19-1.33-.81-.72-1.36-1.6-1.52-1.87-.16-.27-.02-.42.12-.56.12-.12.27-.32.41-.48.14-.16.18-.27.27-.45.09-.18.05-.34-.02-.48-.07-.14-.61-1.48-.84-2.03-.22-.53-.45-.46-.61-.47l-.52-.01c-.18 0-.48.07-.73.34-.25.27-.95.93-.95 2.27 0 1.34.98 2.63 1.11 2.81.14.18 1.93 2.94 4.68 4.12.65.28 1.15.45 1.55.58.65.21 1.24.18 1.7.11.52-.08 1.61-.66 1.84-1.3.23-.64.23-1.19.16-1.3-.07-.11-.25-.18-.52-.32z'/%3E%3Cpath fill='%23ffffff' d='M26.73 5.27C24.01 2.55 20.39 1.05 16.55 1.05 8.64 1.05 2.2 7.49 2.2 15.4c0 2.53.66 5 1.92 7.18L2 30.95l8.56-2.25c2.1 1.15 4.46 1.75 6.88 1.75h.01c7.91 0 14.35-6.44 14.35-14.35 0-3.84-1.5-7.46-4.22-10.18zM16.55 28.03h-.01c-2.15 0-4.26-.58-6.09-1.67l-.44-.26-5.08 1.34 1.35-4.95-.29-.51a12.61 12.61 0 0 1-1.93-6.58c0-6.96 5.66-12.62 12.62-12.62 3.37 0 6.54 1.31 8.92 3.69a12.52 12.52 0 0 1 3.7 8.93c0 6.96-5.66 12.62-12.62 12.62z'/%3E%3C/svg%3E");
}

.itp-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.itp-badge {
    display: inline-flex;
    padding: 8px 10px;
    border-radius: 999px;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #111827;
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.itp-services {
    background: #f8f8f8;
}

.itp-process {
    background: #ffffff;
}

.itp-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
}

.itp-step {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
}

.itp-step-index {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    background: #1d3557;
    color: #ffffff;
}

.itp-step-title {
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.itp-step-text {
    color: #4b5563;
    line-height: 1.6;
}

.itp-gallery {
    background: #f8f8f8;
}

.itp-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
}

.itp-gallery-card {
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

.itp-gallery-image {
    width: 100%;
    display: block;
    height: auto;
    background-color: #f3f4f6;
}

.itp-gallery-body {
    padding: 16px;
}

.itp-gallery-title {
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}

.itp-gallery-text {
    color: #4b5563;
    line-height: 1.6;
}

.itp-faq {
    background: #ffffff;
}

.itp-accordion {
    margin-top: 22px;
}

.itp-acc-item {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 12px 14px;
    background: #ffffff;
    margin-bottom: 12px;
}

.itp-acc-q {
    cursor: pointer;
    font-weight: 700;
    color: #111827;
}

.itp-acc-a {
    padding-top: 10px;
    color: #4b5563;
    line-height: 1.7;
}

.itp-final-cta {
    background: #1d3557;
    color: #ffffff;
}

.itp-final-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: center;
    padding: 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.itp-final-box h2 {
    margin: 0 0 10px;
    color: #ffffff;
}

.itp-final-box p {
    margin: 0;
    opacity: 0.92;
    line-height: 1.7;
}

.itp-final-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.itp-mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: flex;
    gap: 10px;
    z-index: 9999;
    padding-bottom: env(safe-area-inset-bottom);
}

/* Sol tarafta yapışkan WhatsApp/Ara butonları (mobil) */
.itp-sticky-sidebar {
    position: fixed;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9998;
}

.itp-sticky-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s;
}

.itp-sticky-btn:hover {
    transform: scale(1.1);
}

.itp-sticky-whatsapp {
    background: #16a34a;
    color: #ffffff;
}

.itp-sticky-phone {
    background: #f59e0b;
    color: #111827;
}

.itp-sticky-icon {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.itp-sticky-icon-whatsapp {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23ffffff' d='M19.11 17.31c-.27-.14-1.61-.8-1.86-.89-.25-.09-.43-.14-.61.14-.18.27-.7.89-.86 1.07-.16.18-.32.2-.59.07-.27-.14-1.15-.42-2.19-1.33-.81-.72-1.36-1.6-1.52-1.87-.16-.27-.02-.42.12-.56.12-.12.27-.32.41-.48.14-.16.18-.27.27-.45.09-.18.05-.34-.02-.48-.07-.14-.61-1.48-.84-2.03-.22-.53-.45-.46-.61-.47l-.52-.01c-.18 0-.48.07-.73.34-.25.27-.95.93-.95 2.27 0 1.34.98 2.63 1.11 2.81.14.18 1.93 2.94 4.68 4.12.65.28 1.15.45 1.55.58.65.21 1.24.18 1.7.11.52-.08 1.61-.66 1.84-1.3.23-.64.23-1.19.16-1.3-.07-.11-.25-.18-.52-.32z'/%3E%3Cpath fill='%23ffffff' d='M26.73 5.27C24.01 2.55 20.39 1.05 16.55 1.05 8.64 1.05 2.2 7.49 2.2 15.4c0 2.53.66 5 1.92 7.18L2 30.95l8.56-2.25c2.1 1.15 4.46 1.75 6.88 1.75h.01c7.91 0 14.35-6.44 14.35-14.35 0-3.84-1.5-7.46-4.22-10.18zM16.55 28.03h-.01c-2.15 0-4.26-.58-6.09-1.67l-.44-.26-5.08 1.34 1.35-4.95-.29-.51a12.61 12.61 0 0 1-1.93-6.58c0-6.96 5.66-12.62 12.62-12.62 3.37 0 6.54 1.31 8.92 3.69a12.52 12.52 0 0 1 3.7 8.93c0 6.96-5.66 12.62-12.62 12.62z'/%3E%3C/svg%3E");
}

.itp-sticky-icon-phone {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23111827' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
}

.itp-mobile-cta-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    border-radius: 14px;
    background: #111827;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.itp-mobile-cta-whatsapp {
    background: #16a34a;
}

/* Mobil düzenlemeleri */
@media (max-width: 767px) {
    .itp-badges {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 6px;
    }

    .itp-badge {
        white-space: nowrap;
        font-size: 11px;
        padding: 6px 8px;
    }

    .itp-sticky-sidebar {
        display: flex;
    }
}

@media (min-width: 768px) {
    .itp-hero-inner {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 32px;
        align-items: stretch;
    }

    .itp-hero-media {
        order: 2;
        align-self: start;
    }

    .itp-hero-content {
        order: 1;
    }

    .itp-hero-content h1 {
        font-size: 44px;
    }

    .itp-hero-actions {
        flex-direction: row;
    }

    .itp-steps {
        grid-template-columns: 1fr 1fr;
    }

    .itp-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .itp-final-box {
        grid-template-columns: 1.4fr 0.8fr;
    }

    .itp-final-actions {
        flex-direction: row;
        justify-content: flex-end;
    }

    .itp-mobile-cta {
        display: none;
    }

    .itp-sticky-sidebar {
        display: none;
    }
}

@media (min-width: 1024px) {
    .itp-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
