/**
 * Kahraman Elementor Widgets CSS
 * 
 * Custom widget styles for Elementor frontend
 */

/* ==========================================================================
   Hero Badge Widget
   ========================================================================== */
.kahraman-hero-badge-wrapper {
    display: block;
}

.kahraman-hero-badge-wrapper.text-center {
    text-align: center;
}

.kahraman-hero-badge-wrapper.text-right {
    text-align: right;
}

.kahraman-hero-badge {
    display: inline-block;
    padding: 4px 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 4px;
}

/* ==========================================================================
   Hero Heading Widget
   ========================================================================== */
.kahraman-hero-heading-wrapper {
    display: block;
}

.kahraman-hero-heading-wrapper.text-center {
    text-align: center;
}

.kahraman-hero-heading-wrapper.text-right {
    text-align: right;
}

.kahraman-hero-heading {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0;
}

.kahraman-hero-heading .highlight {
    color: var(--kahraman-hero-red, #dc2626);
}

/* ==========================================================================
   Stat Counter Widget
   ========================================================================== */
.kahraman-stat-counter {
    display: flex;
    flex-direction: column;
    padding: 32px;
}

.kahraman-stat-counter.items-center {
    align-items: center;
    text-align: center;
}

.kahraman-stat-counter.items-start {
    align-items: flex-start;
}

.kahraman-stat-counter.has-border {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.kahraman-stat-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.kahraman-stat-value {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.kahraman-stat-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(2.5rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.kahraman-stat-suffix {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
}

.kahraman-stat-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin-top: 8px;
}

/* ==========================================================================
   Hero Image Box Widget
   ========================================================================== */
.kahraman-hero-image-box {
    position: relative;
}

.kahraman-hero-image-frame {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 24px;
    border-style: solid;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.kahraman-hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.kahraman-hero-card {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--kahraman-hero-red, #dc2626);
}

.dark .kahraman-hero-card {
    background: #1e293b;
}

.kahraman-hero-card-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #64748b;
    margin: 0 0 4px 0;
}

.kahraman-hero-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--kahraman-primary, #0a182e);
    margin: 0 0 4px 0;
}

.dark .kahraman-hero-card-title {
    color: white;
}

.kahraman-hero-card-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* ==========================================================================
   Product Card Widget
   ========================================================================== */
.kahraman-product-card {
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.5s ease;
}

.kahraman-product-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.kahraman-product-image-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.kahraman-product-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
}

.kahraman-product-card:hover .kahraman-product-image {
    transform: scale(1.1);
}

.kahraman-product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 24, 46, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.kahraman-product-card:hover .kahraman-product-overlay {
    opacity: 1;
}

.kahraman-product-content {
    padding: 32px;
}

.kahraman-product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.kahraman-product-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.kahraman-product-badge {
    flex-shrink: 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}

.kahraman-product-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin: 0 0 24px 0;
}

.kahraman-product-specs {
    margin-bottom: 32px;
}

.kahraman-product-spec {
    display: flex;
    justify-content: space-between;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    padding: 8px 0;
}

.kahraman-product-spec.has-border {
    border-top: 1px solid #e2e8f0;
}

.dark .kahraman-product-spec.has-border {
    border-top-color: #334155;
}

.kahraman-product-spec .spec-label {
    color: #94a3b8;
}

.kahraman-product-spec .spec-value {
    font-weight: 700;
}

.kahraman-product-btn {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border: 2px solid;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.kahraman-product-card:hover .kahraman-product-btn {
    background: var(--kahraman-primary, #0a182e);
    color: white !important;
}

/* ==========================================================================
   Corporate Grid Widget
   ========================================================================== */
.kahraman-corporate-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.kahraman-corp-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.kahraman-corp-col-left {
    padding-top: 48px;
}

.kahraman-corp-image-tall {
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 16px;
    border: 4px solid white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.dark .kahraman-corp-image-tall {
    border-color: #334155;
}

.kahraman-corp-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.kahraman-corp-stat {
    padding: 32px;
    border-radius: 16px;
    color: white;
}

.kahraman-corp-stat .stat-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.kahraman-corp-stat .stat-label {
    font-size: 14px;
    font-weight: 500;
    color: #94a3b8;
    margin: 8px 0 0 0;
}

.kahraman-corp-iso {
    padding: 32px;
    border-radius: 16px;
    color: white;
}

.kahraman-corp-iso .material-symbols-outlined {
    font-size: 2rem;
    margin-bottom: 16px;
}

.kahraman-corp-iso .iso-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.kahraman-corp-iso .iso-subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.8;
    margin: 4px 0 0 0;
}

/* ==========================================================================
   Certificate Slider Widget
   ========================================================================== */
.kahraman-certificate-slider {
    text-align: center;
}

.kahraman-cert-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin: 0 0 48px 0;
}

.kahraman-cert-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

.kahraman-certificate-slider.has-grayscale .kahraman-cert-list {
    filter: grayscale(1);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.kahraman-certificate-slider.has-grayscale:hover .kahraman-cert-list {
    filter: grayscale(0);
    opacity: 1;
}

.kahraman-cert-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    min-width: 128px;
    padding: 0 16px;
    border-radius: 4px;
}

.kahraman-cert-badge img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.kahraman-cert-badge .cert-text {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
}

/* ==========================================================================
   CTA Banner Widget
   ========================================================================== */
.kahraman-cta-banner {
    position: relative;
    padding: 48px;
    border-radius: 24px;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .kahraman-cta-banner {
        padding: 96px;
    }
}

.kahraman-cta-deco {
    position: absolute;
    top: 0;
    right: 0;
    width: 33.333%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.1;
    pointer-events: none;
}

.kahraman-cta-deco .material-symbols-outlined {
    font-size: 300px;
    line-height: 1;
}

.kahraman-cta-content {
    position: relative;
    z-index: 10;
    display: grid;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .kahraman-cta-content {
        grid-template-columns: 1fr 1fr;
    }
}

.kahraman-cta-text {
    text-align: center;
}

@media (min-width: 1024px) {
    .kahraman-cta-text {
        text-align: left;
    }
}

.kahraman-cta-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 3.75rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 24px 0;
}

.kahraman-cta-highlight {
    color: var(--kahraman-hero-red, #dc2626);
}

.kahraman-cta-desc {
    font-size: 18px;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

.kahraman-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

@media (min-width: 640px) {
    .kahraman-cta-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .kahraman-cta-buttons {
        justify-content: flex-end;
    }
}

.kahraman-cta-btn {
    display: inline-block;
    padding: 20px 40px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-align: center;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.kahraman-cta-btn-primary {
    color: white;
    box-shadow: 0 20px 25px -5px rgba(220, 38, 38, 0.2);
}

.kahraman-cta-btn-primary:hover {
    background: #b91c1c !important;
    transform: scale(1.05);
}

.kahraman-cta-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.kahraman-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */
@media (max-width: 768px) {
    .kahraman-corporate-grid {
        grid-template-columns: 1fr;
    }

    .kahraman-corp-col-left {
        padding-top: 0;
    }

    .kahraman-hero-card {
        position: static;
        margin-top: 16px;
    }

    .kahraman-cert-list {
        gap: 24px;
    }
}

/* ==========================================================================
   Page Hero Widget
   ========================================================================== */
.kahraman-page-hero {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.kahraman-page-hero-overlay {
    position: absolute;
    inset: 0;
    mix-blend-mode: overlay;
    background-size: cover;
    background-position: center;
}

.kahraman-page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 24px;
    max-width: 800px;
}

.kahraman-page-hero-badge {
    display: inline-block;
    padding: 4px 16px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
}

.kahraman-page-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: white;
    margin: 0 0 24px 0;
}

.kahraman-page-hero-desc {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 auto;
    max-width: 640px;
}

/* ==========================================================================
   Timeline Item Widget
   ========================================================================== */
.kahraman-timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

@media (min-width: 1024px) {
    .kahraman-timeline-item {
        align-items: flex-start;
        text-align: left;
    }
}

.kahraman-timeline-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: var(--kahraman-primary, #0a182e);
    box-shadow: 0 0 0 8px white;
}

.dark .kahraman-timeline-icon {
    box-shadow: 0 0 0 8px #1e293b;
}

.kahraman-timeline-icon.is-highlight {
    background: var(--kahraman-hero-red, #dc2626);
}

.kahraman-timeline-icon .material-symbols-outlined {
    font-size: 20px;
}

.kahraman-timeline-content {
    padding-top: 16px;
}

.kahraman-timeline-year {
    font-family: 'JetBrains Mono', monospace;
    font-size: 20px;
    font-weight: 700;
    color: var(--kahraman-hero-red, #dc2626);
}

.kahraman-timeline-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--kahraman-primary, #0a182e);
    margin: 4px 0 0 0;
}

.dark .kahraman-timeline-title {
    color: white;
}

.kahraman-timeline-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin: 8px 0 0 0;
}

/* ==========================================================================
   Gallery Masonry Widget
   ========================================================================== */
.kahraman-gallery-masonry {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

.kahraman-gallery-main {
    grid-column: span 8;
    grid-row: span 2;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.kahraman-gallery-secondary {
    grid-column: span 4;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.kahraman-gallery-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
}

.kahraman-gallery-main:hover .kahraman-gallery-image,
.kahraman-gallery-secondary:hover .kahraman-gallery-image {
    transform: scale(1.1);
}

.kahraman-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.kahraman-gallery-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.kahraman-gallery-secondary:hover .kahraman-gallery-hover-overlay {
    background: rgba(0, 0, 0, 0);
}

.kahraman-gallery-caption {
    position: absolute;
    bottom: 24px;
    left: 24px;
    color: white;
    z-index: 10;
}

.kahraman-gallery-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.kahraman-gallery-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 4px 0 0 0;
}

@media (max-width: 768px) {
    .kahraman-gallery-masonry {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto !important;
    }

    .kahraman-gallery-main,
    .kahraman-gallery-secondary {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 16/9;
    }

    .kahraman-gallery-main {
        aspect-ratio: 4/3;
    }
}

/* ==========================================================================
   Value Card Widget
   ========================================================================== */
.kahraman-value-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid #f1f5f9;
    transition: box-shadow 0.3s ease;
}

.kahraman-value-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.dark .kahraman-value-card {
    border-color: #334155;
}

.kahraman-value-icon-box {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.kahraman-value-icon-box .material-symbols-outlined {
    font-size: 30px;
}

.kahraman-value-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kahraman-value-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.kahraman-value-desc {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   Blueprint Background Utility
   ========================================================================== */
.blueprint-bg {
    background-image: radial-gradient(rgba(10, 24, 46, 0.05) 1px, transparent 0);
    background-size: 24px 24px;
}

.dark .blueprint-bg {
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 0);
}

/* ==========================================================================
   Vision/Mission Card Widget
   ========================================================================== */
.kahraman-vm-card {
    position: relative;
    padding: 40px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: border-color 0.5s ease;
}

@media (min-width: 1024px) {
    .kahraman-vm-card {
        padding: 64px;
    }
}

.kahraman-vm-card:hover {
    border-color: var(--kahraman-hero-red, #dc2626);
}

.dark .kahraman-vm-card {
    border-color: #374151;
}

.kahraman-vm-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    background: #f9fafb;
    margin-bottom: 32px;
    transition: all 0.3s ease;
}

.dark .kahraman-vm-icon-box {
    background: #374151;
}

.kahraman-vm-card:hover .kahraman-vm-icon-box {
    background: var(--kahraman-hero-red, #dc2626);
}

.kahraman-vm-icon-box .material-symbols-outlined {
    font-size: 36px;
    color: var(--kahraman-primary, #0a182e);
    transition: color 0.3s ease;
}

.dark .kahraman-vm-icon-box .material-symbols-outlined {
    color: white;
}

.kahraman-vm-card:hover .kahraman-vm-icon-box .material-symbols-outlined {
    color: white;
}

.kahraman-vm-prefix {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.kahraman-vm-heading {
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 24px 0;
}

.kahraman-vm-desc {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   Core Value Card Widget
   ========================================================================== */
.kahraman-core-value-card {
    padding: 32px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

.kahraman-core-value-card:hover {
    box-shadow: 0 25px 50px -12px rgba(10, 24, 46, 0.05);
}

.dark .kahraman-core-value-card {
    border-color: #374151;
}

.kahraman-cv-icon {
    display: block;
    font-size: 30px;
    margin-bottom: 24px;
}

.kahraman-cv-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin: 0 0 12px 0;
}

.kahraman-cv-desc {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   Certificate Card Widget
   ========================================================================== */
.kahraman-cert-card {
    display: flex;
    flex-direction: column;
    padding: 32px;
    border: 1px solid #dcdfe4;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.kahraman-cert-card:hover {
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
    border-color: var(--kahraman-primary, #0a182e);
}

.dark .kahraman-cert-card {
    border-color: #374151;
}

.kahraman-cert-icon-box {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(10, 24, 46, 0.05);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.kahraman-cert-card:hover .kahraman-cert-icon-box {
    background: var(--kahraman-primary, #0a182e);
}

.kahraman-cert-icon-box .material-symbols-outlined {
    font-size: 36px;
    transition: color 0.3s ease;
}

.kahraman-cert-card:hover .kahraman-cert-icon-box .material-symbols-outlined {
    color: white !important;
}

.kahraman-cert-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 4px 0;
}

.kahraman-cert-number {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

.kahraman-cert-desc {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.kahraman-cert-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    margin-top: auto;
    transition: color 0.3s ease;
}

.kahraman-cert-link .material-symbols-outlined {
    font-size: 14px;
}

.kahraman-cert-link:hover {
    color: var(--kahraman-hero-red, #dc2626);
}

/* ==========================================================================
   Process Step Widget
   ========================================================================== */
.kahraman-process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.kahraman-process-step.has-connector::after {
    content: '';
    position: absolute;
    top: 32px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #dcdfe4;
    z-index: 0;
}

@media (max-width: 768px) {
    .kahraman-process-step.has-connector::after {
        display: none;
    }
}

.kahraman-ps-circle {
    position: relative;
    z-index: 10;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 24px;
    box-shadow: 0 0 0 8px #f9fafb;
}

.dark .kahraman-ps-circle {
    box-shadow: 0 0 0 8px #1e293b;
}

.kahraman-ps-circle span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 24px;
    font-weight: 700;
}

.kahraman-ps-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.kahraman-ps-desc {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    padding: 0 16px;
}

/* ==========================================================================
   Policy Feature Box Widget
   ========================================================================== */
.kahraman-policy-box {
    padding: 24px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
}

.dark .kahraman-policy-box {
    border-color: #374151;
}

.kahraman-pb-icon {
    display: block;
    font-size: 24px;
    margin-bottom: 16px;
}

.kahraman-pb-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.kahraman-pb-desc {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   Policy Checklist Item Widget
   ========================================================================== */
.kahraman-policy-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.kahraman-pci-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.kahraman-pci-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.kahraman-pci-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.kahraman-pci-desc {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   Blueprint Grid Background Utility
   ========================================================================== */
.blueprint-grid {
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* ==========================================================================
   Partner Filter Tabs Widget
   ========================================================================== */
.kahraman-partner-filter-tabs {
    margin-bottom: 32px;
}

.kahraman-pft-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.kahraman-pft-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin: 0;
}

.kahraman-pft-tabs-wrap {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow-x: auto;
}

.dark .kahraman-pft-tabs-wrap {
    background: #1f252e;
}

.kahraman-pft-tab {
    flex-shrink: 0;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.kahraman-pft-tab:hover:not(.active) {
    background: rgba(10, 24, 46, 0.05);
}

.dark .kahraman-pft-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   Partner Logo Card Widget
   ========================================================================== */
.kahraman-partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 9;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.kahraman-partner-logo:hover {
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
    border-color: rgba(10, 24, 46, 0.2);
    transform: translateY(-4px);
}

.kahraman-partner-logo img {
    max-height: 48px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.kahraman-partner-logo.grayscale-hover img {
    filter: grayscale(100%);
    opacity: 0.7;
}

.kahraman-partner-logo.grayscale-hover:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ==========================================================================
   Reference Project Card Widget
   ========================================================================== */
.kahraman-rpc-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    cursor: pointer;
    text-decoration: none;
}

.kahraman-rpc-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 12px;
}

.kahraman-rpc-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 24, 46, 0.2);
    z-index: 10;
    transition: background 0.5s ease;
}

.kahraman-rpc-card:hover .kahraman-rpc-overlay {
    background: transparent;
}

.kahraman-rpc-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.7s ease;
}

.kahraman-rpc-card:hover .kahraman-rpc-image {
    transform: scale(1.1);
}

.kahraman-rpc-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 20;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.kahraman-rpc-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kahraman-rpc-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    transition: color 0.3s ease;
}

.kahraman-rpc-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    margin: 0;
}

.kahraman-rpc-location .material-symbols-outlined {
    font-size: 14px;
}

/* ==========================================================================
   Section Title Divider Widget
   ========================================================================== */
.kahraman-section-title-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 40px 0;
}

.kahraman-std-line {
    flex: 1;
    height: 2px;
}

.kahraman-std-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin: 0;
    white-space: nowrap;
}

/* ==========================================================================
   Reference Hero Widget
   ========================================================================== */
.kahraman-reference-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.kahraman-rh-content {
    position: relative;
    z-index: 10;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.kahraman-rh-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0;
}

@media (max-width: 768px) {
    .kahraman-rh-title {
        font-size: 32px;
    }
}

.kahraman-rh-desc {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 768px) {
    .kahraman-rh-desc {
        font-size: 16px;
    }
}

.kahraman-rh-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.kahraman-rh-tag {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ==========================================================================
   Company Intro Block Widget
   ========================================================================== */
.kahraman-company-intro-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

@media (max-width: 1024px) {
    .kahraman-company-intro-block {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.kahraman-cib-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.kahraman-cib-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.kahraman-cib-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.2;
    margin: 0;
}

@media (min-width: 768px) {
    .kahraman-cib-title {
        font-size: 40px;
    }
}

.kahraman-cib-accent-bar {
    width: 80px;
    height: 6px;
    border-radius: 4px;
}

.kahraman-cib-text {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.kahraman-cib-text-lg {
    font-size: 18px;
}

.kahraman-cib-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    padding: 16px 0;
}

.kahraman-cib-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.kahraman-cib-stat-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 40px;
    font-weight: 900;
}

.kahraman-cib-stat-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.kahraman-cib-right {
    position: relative;
}

.kahraman-cib-image-bg {
    position: absolute;
    inset: -16px;
    border-radius: 12px;
    z-index: -1;
    transition: inset 0.5s ease;
}

.kahraman-cib-right:hover .kahraman-cib-image-bg {
    inset: -24px;
}

.kahraman-cib-image {
    width: 100%;
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
   Gallery Section Widget
   ========================================================================== */
.kahraman-gallery-section {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.kahraman-gs-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.kahraman-gs-header-left {
    max-width: 640px;
}

.kahraman-gs-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin: 0 0 16px 0;
}

.kahraman-gs-subtitle {
    font-size: 16px;
    margin: 0;
}

.kahraman-gs-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-bottom: 2px solid;
    padding-bottom: 4px;
    transition: gap 0.3s ease;
}

.kahraman-gs-link:hover {
    gap: 12px;
}

.kahraman-gs-link .material-symbols-outlined {
    font-size: 18px;
}

.kahraman-gs-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
}

@media (max-width: 768px) {
    .kahraman-gs-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto !important;
    }
}

.kahraman-gs-main {
    grid-column: span 8;
    grid-row: span 2;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .kahraman-gs-main {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 16/9;
    }
}

.kahraman-gs-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
}

.kahraman-gs-main:hover .kahraman-gs-image,
.kahraman-gs-secondary:hover .kahraman-gs-image {
    transform: scale(1.1);
}

.kahraman-gs-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.kahraman-gs-caption {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 10;
    color: white;
}

.kahraman-gs-img-title {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 4px 0;
}

.kahraman-gs-img-subtitle {
    font-size: 14px;
    opacity: 0.7;
    margin: 0;
}

.kahraman-gs-secondary {
    grid-column: span 4;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .kahraman-gs-secondary {
        grid-column: span 1;
        aspect-ratio: 16/9;
    }
}

.kahraman-gs-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.kahraman-gs-secondary:hover .kahraman-gs-hover-overlay {
    background: transparent;
}

/* ==========================================================================
   Section Header Accent Widget
   ========================================================================== */
.kahraman-section-header-accent {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 900;
    margin: 0 0 48px 0;
}

.kahraman-sha-accent {
    height: 4px;
    border-radius: 2px;
}

.kahraman-sha-title {
    text-transform: uppercase;
}

/* ==========================================================================
   Timeline Section Widget
   ========================================================================== */
.kahraman-timeline-section {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.kahraman-ts-header {
    text-align: center;
}

.kahraman-ts-title {
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 900;
    margin: 0 0 16px 0;
}

.kahraman-ts-subtitle {
    font-size: 16px;
    color: #64748b;
    max-width: 560px;
    margin: 0 auto;
}

.kahraman-ts-wrapper {
    position: relative;
}

.kahraman-ts-line {
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    height: 1px;
    display: none;
}

@media (min-width: 1024px) {
    .kahraman-ts-line {
        display: block;
    }
}

.kahraman-ts-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 10;
}

@media (max-width: 1024px) {
    .kahraman-ts-items {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.kahraman-ts-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

@media (min-width: 1024px) {
    .kahraman-ts-item {
        align-items: flex-start;
    }
}

.kahraman-ts-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 0 0 8px white;
}

.kahraman-ts-icon .material-symbols-outlined {
    font-size: 20px;
}

.kahraman-ts-content {
    text-align: center;
}

@media (min-width: 1024px) {
    .kahraman-ts-content {
        text-align: left;
        padding-top: 16px;
    }
}

.kahraman-ts-year {
    font-family: 'JetBrains Mono', monospace;
    font-size: 20px;
    font-weight: 700;
}

.kahraman-ts-item-title {
    font-size: 18px;
    font-weight: 700;
    margin: 4px 0 8px 0;
}

.kahraman-ts-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   Vision Mission Card Widget (Updated to match HTML)
   ========================================================================== */
.kahraman-vm-card {
    background: #ffffff;
    padding: 64px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.kahraman-vm-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 32px;
}

.kahraman-vm-prefix {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 16px 0;
}

.kahraman-vm-heading {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.3;
    margin: 0 0 24px 0;
}

.kahraman-vm-desc {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   Core Value Card Widget (Updated to match HTML)
   ========================================================================== */
.kahraman-core-value-card {
    background: #f9fafb;
    padding: 32px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.kahraman-cv-icon {
    font-size: 30px;
    display: block;
    margin-bottom: 16px;
}

.kahraman-cv-title {
    font-weight: 700;
    margin: 0 0 8px 0;
}

.kahraman-cv-desc {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   Simple CTA Section Widget
   ========================================================================== */
.kahraman-simple-cta {
    padding: 80px 24px;
    text-align: center;
}

.kahraman-scta-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 900;
    margin: 0 0 32px 0;
}

.kahraman-scta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.kahraman-scta-btn {
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.kahraman-scta-btn-primary {
    background-color: #dc2626;
    color: #ffffff;
}

.kahraman-scta-btn-primary:hover {
    background-color: #b91c1c;
}

.kahraman-scta-btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    background: transparent;
}

.kahraman-scta-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   Section Title Simple Widget
   ========================================================================== */
.kahraman-sts-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    margin: 0;
}

/* ==========================================================================
   Page Hero Badge Style Update for Vizyon page
   ========================================================================== */
.kahraman-page-hero-badge.solid-style {
    background-color: #dc2626;
    border: none;
    padding: 4px 16px;
    border-radius: 4px;
}

/* ==========================================================================
   Quality Hero Widget
   ========================================================================== */
.kahraman-qh {
    position: relative;
    overflow: hidden;
}

.kahraman-qh-grid {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.kahraman-qh-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 96px 24px 128px;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .kahraman-qh-content {
        padding: 128px 40px 160px;
    }
}

.kahraman-qh-inner {
    max-width: 800px;
}

.kahraman-qh-badge {
    display: inline-block;
    padding: 4px 12px;
    margin-bottom: 24px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: white;
    border-radius: 2px;
}

.kahraman-qh-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: white;
    margin: 0 0 24px 0;
}

@media (min-width: 1024px) {
    .kahraman-qh-title {
        font-size: 72px;
    }
}

.kahraman-qh-gradient {
    background: linear-gradient(to right, white, #9ca3af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kahraman-qh-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #9ca3af;
    max-width: 672px;
    margin: 0 0 40px 0;
}

@media (min-width: 1024px) {
    .kahraman-qh-desc {
        font-size: 20px;
    }
}

.kahraman-qh-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.kahraman-qh-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: white;
    color: #0a182e;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.kahraman-qh-btn:hover {
    background: #f3f4f6;
}

.kahraman-qh-btn .material-symbols-outlined {
    font-size: 20px;
}

.kahraman-qh-verified {
    display: flex;
    flex-direction: column;
    padding-left: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: white;
}

.kahraman-qh-verified-label {
    font-weight: 700;
    display: block;
}

.kahraman-qh-verified-text {
    opacity: 0.7;
}

/* ==========================================================================
   Certificate Card Widget (Updated)
   ========================================================================== */
.kahraman-cert-card {
    display: flex;
    flex-direction: column;
    padding: 32px;
    background: white;
    border: 1px solid #dcdfe4;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.kahraman-cert-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #0a182e;
}

.kahraman-cert-icon-box {
    width: 64px;
    height: 64px;
    background: rgba(10, 24, 46, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.kahraman-cert-card:hover .kahraman-cert-icon-box {
    background: #0a182e;
    color: white;
}

.kahraman-cert-icon-box .material-symbols-outlined {
    font-size: 36px;
}

.kahraman-cert-title {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 4px 0;
}

.kahraman-cert-number {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

.kahraman-cert-desc {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.kahraman-cert-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    margin-top: auto;
}

.kahraman-cert-link .material-symbols-outlined {
    font-size: 14px;
}

/* ==========================================================================
   Process Step Widget (Updated with ring)
   ========================================================================== */
.kahraman-process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.kahraman-ps-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
    box-shadow: 0 0 0 8px #f9fafb;
    z-index: 10;
}

.kahraman-ps-circle span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 24px;
    font-weight: 700;
}

.kahraman-ps-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.kahraman-ps-desc {
    font-size: 14px;
    line-height: 1.5;
    padding: 0 16px;
    margin: 0;
}

/* ==========================================================================
   Policy Feature Box Widget
   ========================================================================== */
.kahraman-policy-box {
    padding: 24px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.kahraman-pb-icon {
    display: block;
    margin-bottom: 16px;
}

.kahraman-pb-title {
    font-weight: 700;
    margin: 0 0 8px 0;
}

.kahraman-pb-desc {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
}

/* ==========================================================================
   Policy Checklist Item Widget
   ========================================================================== */
.kahraman-policy-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.kahraman-pci-icon {
    flex-shrink: 0;
    font-size: 24px;
}

.kahraman-pci-content {
    flex: 1;
}

.kahraman-pci-title {
    font-weight: 700;
    margin: 0 0 4px 0;
}

.kahraman-pci-desc {
    font-size: 14px;
    margin: 0;
}

/* ==========================================================================
   Quality Policy Header Widget
   ========================================================================== */
.kahraman-quality-policy-header {
    margin-bottom: 32px;
}

.kahraman-qph-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin: 0 0 24px 0;
}

.kahraman-qph-desc {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 32px 0;
}

/* ==========================================================================
   QC Section Title Widget
   ========================================================================== */
.kahraman-qc-section-title {
    text-align: center;
    margin-bottom: 64px;
}

.kahraman-qc-st-title {
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin: 0 0 16px 0;
}

.kahraman-qc-st-desc {
    font-size: 16px;
    max-width: 576px;
    margin: 0 auto;
}

/* ==========================================================================
   CTA Card Widget
   ========================================================================== */
.kahraman-cta-card {
    position: relative;
    border-radius: 16px;
    padding: 48px;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .kahraman-cta-card {
        padding: 80px;
    }
}

.kahraman-ctac-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 33%;
    height: 100%;
    opacity: 0.1;
    transform: skewX(-12deg) translateX(80px);
}

.kahraman-ctac-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .kahraman-ctac-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.kahraman-ctac-text {
    text-align: center;
}

@media (min-width: 1024px) {
    .kahraman-ctac-text {
        text-align: left;
    }
}

.kahraman-ctac-title {
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: white;
    margin: 0 0 16px 0;
}

@media (min-width: 1024px) {
    .kahraman-ctac-title {
        font-size: 36px;
    }
}

.kahraman-ctac-desc {
    font-size: 18px;
    color: #9ca3af;
    margin: 0;
}

.kahraman-ctac-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 640px) {
    .kahraman-ctac-buttons {
        flex-direction: row;
    }
}

.kahraman-ctac-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.kahraman-ctac-btn-primary {
    color: white;
}

.kahraman-ctac-btn-primary:hover {
    filter: brightness(1.1);
}

.kahraman-ctac-btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.kahraman-ctac-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   REFERANSLARIMIZ PAGE WIDGETS
   ========================================================================== */

/* ==========================================================================
   Reference Hero Widget
   ========================================================================== */
.kahraman-reference-hero {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.kahraman-rh-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 672px;
    position: relative;
    z-index: 10;
}

.kahraman-rh-title {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: white;
    margin: 0;
}

@media (min-width: 768px) {
    .kahraman-rh-title {
        font-size: 60px;
    }
}

.kahraman-rh-desc {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

@media (min-width: 768px) {
    .kahraman-rh-desc {
        font-size: 20px;
    }
}

.kahraman-rh-tags {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 16px;
}

.kahraman-rh-tag {
    display: inline-block;
    padding: 8px 16px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
}

/* ==========================================================================
   Partner Filter Tabs Widget
   ========================================================================== */
.kahraman-partner-filter-tabs {
    margin-bottom: 32px;
}

.kahraman-pft-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 768px) {
    .kahraman-pft-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.kahraman-pft-title {
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    margin: 0;
}

.kahraman-pft-tabs-wrap {
    display: flex;
    gap: 8px;
    padding: 4px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow-x: auto;
}

.kahraman-pft-tab {
    display: flex;
    height: 40px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.kahraman-pft-tab:not(.active):hover {
    background: rgba(10, 25, 47, 0.05);
}

/* ==========================================================================
   Partner Logo Card Widget
   ========================================================================== */
.kahraman-partner-logo {
    display: flex;
    flex-direction: column;
    aspect-ratio: 16/9;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.kahraman-partner-logo:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(10, 25, 47, 0.2);
    transform: translateY(-4px);
}

.kahraman-partner-logo img {
    height: 48px;
    width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.kahraman-partner-logo.grayscale-hover img {
    filter: grayscale(100%);
    opacity: 0.7;
}

.kahraman-partner-logo.grayscale-hover:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* ==========================================================================
   Section Title Divider Widget
   ========================================================================== */
.kahraman-section-title-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.kahraman-std-line {
    flex-grow: 1;
    height: 2px;
    background: rgba(10, 25, 47, 0.1);
}

.kahraman-std-title {
    font-family: 'Manrope', sans-serif;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    white-space: nowrap;
    margin: 0;
}

/* ==========================================================================
   Reference Project Card Widget
   ========================================================================== */
.kahraman-rpc-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    cursor: pointer;
    text-decoration: none;
}

.kahraman-rpc-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 12px;
}

.kahraman-rpc-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 47, 0.2);
    transition: background-color 0.5s ease;
    z-index: 10;
}

.kahraman-rpc-card:hover .kahraman-rpc-overlay {
    background: transparent;
}

.kahraman-rpc-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.7s ease;
}

.kahraman-rpc-card:hover .kahraman-rpc-image {
    transform: scale(1.1);
}

.kahraman-rpc-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 20;
    display: inline-block;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: white;
    border-radius: 4px;
}

.kahraman-rpc-content {}

.kahraman-rpc-title {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    transition: color 0.3s ease;
}

.kahraman-rpc-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    margin: 8px 0 0 0;
}

.kahraman-rpc-location .material-symbols-outlined {
    font-size: 14px;
}

/* ==========================================================================
   Reference CTA Widget
   ========================================================================== */
.kahraman-ref-cta {
    position: relative;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    overflow: hidden;
}

@media (min-width: 768px) {
    .kahraman-ref-cta {
        padding: 64px;
    }
}

.kahraman-rcta-decor {
    position: absolute;
    top: 0;
    right: 0;
    padding: 32px;
    color: rgba(255, 255, 255, 0.05);
}

.kahraman-rcta-decor .material-symbols-outlined {
    font-size: 120px;
}

.kahraman-rcta-title {
    font-family: 'Manrope', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: white;
    margin: 0 0 24px 0;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .kahraman-rcta-title {
        font-size: 36px;
    }
}

.kahraman-rcta-desc {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 672px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 10;
}

.kahraman-rcta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 640px) {
    .kahraman-rcta-buttons {
        flex-direction: row;
    }
}

.kahraman-rcta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.kahraman-rcta-btn-primary {
    background: white;
    color: #0a192f;
}

.kahraman-rcta-btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.kahraman-rcta-btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.kahraman-rcta-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   SATIŞ SONRASI PAGE WIDGETS
   ========================================================================== */

/* ==========================================================================
   After Sales Hero Widget
   ========================================================================== */
.kahraman-ash-hero {
    overflow: hidden;
    border-radius: 12px;
}

.kahraman-ash-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 520px;
    padding: 48px;
    align-items: flex-start;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (min-width: 768px) {
    .kahraman-ash-inner {
        padding: 64px;
    }
}

.kahraman-ash-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 672px;
}

.kahraman-ash-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: white;
    border-radius: 2px;
    align-self: flex-start;
}

.kahraman-ash-title {
    font-family: 'Manrope', sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: white;
    margin: 0;
}

@media (min-width: 768px) {
    .kahraman-ash-title {
        font-size: 60px;
    }
}

.kahraman-ash-desc {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.kahraman-ash-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
}

.kahraman-ash-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.kahraman-ash-btn-primary {
    color: white;
}

.kahraman-ash-btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(0.9);
}

.kahraman-ash-btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.kahraman-ash-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Stats Bar Variant (Satış Sonrası - Value First Layout)
   ========================================================================== */
.kahraman-stat-counter.value-first {
    flex-direction: column-reverse;
}

.kahraman-stat-counter.value-first .kahraman-stat-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(10, 25, 47, 0.6);
}

.kahraman-stat-counter.value-first .kahraman-stat-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 30px;
    font-weight: 700;
}

/* ==========================================================================
   Service Card Widget
   ========================================================================== */
.kahraman-service-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px;
    background: white;
    border: 1px solid #dcdfe4;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.kahraman-service-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.kahraman-sc-icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(10, 25, 47, 0.05);
    color: #0a182e;
    transition: all 0.3s ease;
}

.kahraman-sc-icon-box .material-symbols-outlined {
    font-size: 30px;
}

.kahraman-sc-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kahraman-sc-title {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #0a182e;
    margin: 0;
}

.kahraman-sc-desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(10, 25, 47, 0.7);
    margin: 0;
}

.kahraman-sc-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    margin-top: 8px;
    transition: gap 0.3s ease;
}

.kahraman-service-card:hover .kahraman-sc-link {
    gap: 8px;
}

.kahraman-sc-link .material-symbols-outlined {
    font-size: 14px;
}

/* ==========================================================================
   Services Section Header Widget
   ========================================================================== */
.kahraman-services-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .kahraman-services-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.kahraman-svh-left {}

.kahraman-svh-title {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin: 0;
}

.kahraman-svh-line {
    height: 6px;
    width: 96px;
    border-radius: 3px;
    margin-top: 16px;
}

.kahraman-svh-desc {
    max-width: 448px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   Process Step (Dark Theme Variant for Satış Sonrası)
   ========================================================================== */
.kahraman-process-step.dark-theme .kahraman-ps-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
}

.kahraman-process-step.dark-theme .kahraman-ps-circle span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 20px;
    font-weight: 700;
}

.kahraman-process-step.dark-theme .kahraman-ps-title {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.kahraman-process-step.dark-theme .kahraman-ps-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ==========================================================================
   After Sales CTA Widget
   ========================================================================== */
.kahraman-as-cta {
    padding: 48px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .kahraman-as-cta {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.kahraman-ascta-content {
    max-width: 512px;
}

.kahraman-ascta-title {
    font-family: 'Manrope', sans-serif;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.2;
    color: #0a182e;
    margin: 0 0 16px 0;
}

.kahraman-ascta-desc {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: rgba(10, 25, 47, 0.6);
    margin: 0;
}

.kahraman-ascta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

@media (min-width: 640px) {
    .kahraman-ascta-buttons {
        flex-direction: row;
        width: auto;
    }
}

.kahraman-ascta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 56px;
    padding: 0 40px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.kahraman-ascta-btn:hover {
    filter: brightness(0.9);
}

.kahraman-ascta-btn .material-symbols-outlined {
    font-size: 20px;
}

/* ==========================================================================
   İLETİŞİM PAGE WIDGETS
   ========================================================================== */

/* ==========================================================================
   Contact Hero Widget
   ========================================================================== */
.kahraman-contact-hero {
    position: relative;
    overflow: hidden;
}

.kahraman-ch-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
}

.kahraman-ch-pattern svg {
    width: 100%;
    height: 100%;
}

.kahraman-ch-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 24px;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .kahraman-ch-content {
        padding: 96px 40px;
    }
}

.kahraman-ch-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.kahraman-ch-breadcrumb a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.kahraman-ch-breadcrumb a:hover {
    color: white;
}

.kahraman-ch-sep {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
}

.kahraman-ch-current {
    font-size: 14px;
    font-weight: 500;
    color: white;
}

.kahraman-ch-title {
    font-family: 'Manrope', sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
    color: white;
    margin: 0 0 16px 0;
}

@media (min-width: 768px) {
    .kahraman-ch-title {
        font-size: 72px;
    }
}

.kahraman-ch-desc {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 672px;
    margin: 0;
}

@media (min-width: 768px) {
    .kahraman-ch-desc {
        font-size: 20px;
    }
}

/* ==========================================================================
   Contact Info Card Widget
   ========================================================================== */
.kahraman-contact-info-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.kahraman-contact-info-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.kahraman-cic-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: white;
}

.kahraman-cic-icon .material-symbols-outlined {
    font-size: 24px;
}

.kahraman-cic-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.kahraman-cic-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.kahraman-cic-title {
    font-size: 18px;
    font-weight: 700;
    color: #0a182e;
    margin: 0;
}

.kahraman-cic-title.mono {
    font-family: 'JetBrains Mono', monospace;
}

.kahraman-cic-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #667285;
    margin: 0;
}

/* ==========================================================================
   Contact Form Widget
   ========================================================================== */
.kahraman-contact-form {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(10, 24, 46, 0.05);
}

@media (min-width: 768px) {
    .kahraman-contact-form {
        padding: 48px;
    }
}

.kahraman-cf-title {
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #0a182e;
    margin: 0 0 8px 0;
}

.kahraman-cf-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #667285;
    margin: 0 0 32px 0;
}

.kahraman-cf-form-wrapper {
    /* CF7 form styles applied via inline styles in widget */
}

.kahraman-cf-notice {
    padding: 24px;
    background: #f8fafc;
    border-radius: 8px;
    color: #667285;
    text-align: center;
    font-size: 14px;
}

/* ==========================================================================
   Map Section Widget
   ========================================================================== */
.kahraman-map-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #e5e7eb;
}

.kahraman-ms-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) contrast(125%);
}

.kahraman-ms-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.kahraman-ms-card {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 10;
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 320px;
    border-left: 4px solid;
    display: none;
}

@media (min-width: 768px) {
    .kahraman-ms-card {
        display: block;
    }
}

.kahraman-ms-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #0a182e;
    margin: 0 0 4px 0;
}

.kahraman-ms-card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #667285;
    margin: 0 0 16px 0;
}

.kahraman-ms-directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

.kahraman-ms-directions:hover {
    text-decoration: underline;
}

.kahraman-ms-directions .material-symbols-outlined {
    font-size: 14px;
}

/* ==========================================================================
   Contact Section Title (Bize Ulaşın)
   ========================================================================== */
.kahraman-contact-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #0a182e;
    margin: 0 0 32px 0;
}

.kahraman-cst-bar {
    width: 32px;
    height: 4px;
    background: #dc2626;
}

/* ==========================================================================
   Social Links (İletişim)
   ========================================================================== */
.kahraman-social-links {
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.kahraman-sl-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #667285;
    display: block;
    margin-bottom: 16px;
}

.kahraman-sl-icons {
    display: flex;
    gap: 16px;
}

.kahraman-sl-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a182e;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.kahraman-sl-icon:hover {
    background: #dc2626;
}

.kahraman-sl-icon .material-symbols-outlined {
    font-size: 20px;
}

/* ==========================================================================
   TEKLİF AL PAGE WIDGETS
   ========================================================================== */

/* ==========================================================================
   Quote Page Header Widget
   ========================================================================== */
.kahraman-quote-header {
    margin-bottom: 40px;
}

.kahraman-qh-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 32px;
}

.kahraman-qh-breadcrumb a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.kahraman-qh-breadcrumb a:hover {
    color: var(--accent, #dc2626);
}

.kahraman-qh-sep {
    color: #d1d5db;
}

.kahraman-qh-current {
    color: #0a192f;
}

.kahraman-qh-title {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -0.025em;
    color: #0a192f;
    margin: 0 0 8px 0;
}

.kahraman-qh-subtitle {
    font-size: 18px;
    color: #4b5563;
    margin: 0;
}

/* ==========================================================================
   Product Summary Card Widget
   ========================================================================== */
.kahraman-product-summary-card {
    position: relative;
}

.kahraman-psc-inner {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: sticky;
    top: 96px;
}

.kahraman-psc-header {
    padding: 24px 24px 0;
}

.kahraman-psc-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9ca3af;
}

.kahraman-psc-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    margin: 16px 24px;
    border-radius: 8px;
    background: #f3f4f6;
}

.kahraman-psc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kahraman-psc-content {
    padding: 0 24px 24px;
}

.kahraman-psc-name {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0a192f;
    margin: 0 0 4px 0;
}

.kahraman-psc-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 16px 0;
}

.kahraman-psc-specs {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kahraman-psc-spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
}

.kahraman-psc-spec-item .material-symbols-outlined {
    font-size: 20px;
    color: var(--accent, #dc2626);
}

.kahraman-psc-change-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 16px;
    padding: 10px 16px;
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.3s ease;
}

.kahraman-psc-change-btn:hover {
    background: #f9fafb;
}

.kahraman-psc-change-btn .material-symbols-outlined {
    font-size: 18px;
}

/* Product Selector Modal */
.kahraman-psc-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.kahraman-psc-modal.active {
    display: flex;
}

.kahraman-psc-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.kahraman-psc-modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.kahraman-psc-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.kahraman-psc-modal-header h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0a192f;
    margin: 0;
}

.kahraman-psc-modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.kahraman-psc-modal-close:hover {
    background: #f3f4f6;
}

.kahraman-psc-modal-body {
    padding: 24px;
    overflow-y: auto;
    display: grid;
    gap: 16px;
}

.kahraman-psc-product-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #f9fafb;
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.kahraman-psc-product-option:hover {
    background: #f3f4f6;
    border-color: #e5e7eb;
}

.kahraman-psc-product-option.selected {
    background: #fef2f2;
    border-color: #dc2626;
}

.kahraman-psc-product-thumb {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: #e5e7eb;
    flex-shrink: 0;
}

.kahraman-psc-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kahraman-psc-product-info {
    flex: 1;
}

.kahraman-psc-product-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0a192f;
    margin: 0 0 4px 0;
}

.kahraman-psc-product-info p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.kahraman-psc-check {
    font-size: 24px;
    color: #dc2626;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.kahraman-psc-product-option.selected .kahraman-psc-check {
    opacity: 1;
}

/* ==========================================================================
   Quote Form Widget
   ========================================================================== */
.kahraman-quote-form {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 32px;
}

@media (min-width: 768px) {
    .kahraman-quote-form {
        padding: 32px;
    }
}

.kahraman-qf-form-wrapper {
    /* CF7 styles applied via inline styles in widget */
}

.kahraman-qf-notice {
    padding: 24px;
    background: #f8fafc;
    border-radius: 8px;
    color: #667285;
    text-align: center;
    font-size: 14px;
}

.kahraman-qf-footer {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.kahraman-qf-kvkk {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.kahraman-qf-kvkk a {
    text-decoration: underline;
}

/* ==========================================================================
   Trust Badge Widget
   ========================================================================== */
.kahraman-trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.kahraman-tb-icon {
    font-size: 30px;
}

.kahraman-tb-title {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0a192f;
    margin: 0;
}

.kahraman-tb-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

/* ==========================================================================
   Process Step Widget
   ========================================================================== */
.kahraman-process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.kahraman-process-step .kahraman-ps-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.kahraman-process-step .kahraman-ps-circle span {
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: white;
}

/* Light colored circles need dark text */
.kahraman-process-step .kahraman-ps-circle.light-circle span {
    color: #0a182e;
}

.kahraman-process-step .kahraman-ps-title {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.kahraman-process-step .kahraman-ps-desc {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    max-width: 200px;
}

/* Connector line between steps - dotted pattern */
.kahraman-process-step.has-connector::after {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(50% + 50px);
    width: calc(100% - 80px);
    height: 2px;
    background: repeating-linear-gradient(90deg,
            rgba(255, 255, 255, 0.4) 0px,
            rgba(255, 255, 255, 0.4) 6px,
            transparent 6px,
            transparent 14px);
    z-index: 1;
}

/* Connector for light backgrounds */
.kahraman-process-step.has-connector.light-bg::after {
    background: repeating-linear-gradient(90deg,
            rgba(10, 24, 46, 0.3) 0px,
            rgba(10, 24, 46, 0.3) 6px,
            transparent 6px,
            transparent 14px);
}

/* ==========================================================================
   Partner Filter Tabs Widget
   ========================================================================== */
.kahraman-partner-filter-tabs {
    margin-bottom: 32px;
}

.kahraman-pft-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.kahraman-pft-title {
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    color: #0a192f;
    margin: 0;
}

.kahraman-pft-tabs-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    background: #f3f4f6;
    border-radius: 12px;
}

.kahraman-pft-tab {
    padding: 10px 20px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(10, 24, 46, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.kahraman-pft-tab:hover {
    color: #0a192f;
}

.kahraman-pft-tab.active {
    background: #0a192f;
    color: #ffffff;
}

@media (max-width: 768px) {
    .kahraman-pft-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .kahraman-pft-tabs-wrap {
        width: 100%;
        overflow-x: auto;
    }
}

/* ==========================================================================
   Partner Logo Card Widget
   ========================================================================== */
.kahraman-partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
}

.kahraman-partner-logo:hover {
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.kahraman-partner-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: filter 0.3s ease;
}

/* Grayscale hover effect */
.kahraman-partner-logo.grayscale-hover img {
    filter: grayscale(100%);
    opacity: 0.6;
}

.kahraman-partner-logo.grayscale-hover:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ==========================================================================
   Vehicles Page Header Widget
   ========================================================================== */
.kahraman-vehicles-header {
    text-align: center;
    margin-bottom: 48px;
}

.kahraman-vh-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #0a192f;
    margin: 0 0 16px 0;
    line-height: 1.1;
}

.kahraman-vh-subtitle {
    font-size: 18px;
    color: #6b7280;
    max-width: 672px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .kahraman-vh-title {
        font-size: 32px;
    }

    .kahraman-vh-subtitle {
        font-size: 16px;
    }
}

/* ==========================================================================
   Vehicle Product Card Widget
   ========================================================================== */
.kahraman-vpc {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.kahraman-vpc:hover {
    border-color: var(--accent, #db2424);
    box-shadow: 0 20px 25px -5px rgba(219, 36, 36, 0.1);
}

.kahraman-vpc-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.kahraman-vpc-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.kahraman-vpc:hover .kahraman-vpc-image {
    transform: scale(1.05);
}

.kahraman-vpc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.kahraman-vpc:hover .kahraman-vpc-overlay {
    opacity: 1;
}

.kahraman-vpc-cta {
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.kahraman-vpc-cta .material-symbols-outlined {
    font-size: 16px;
}

.kahraman-vpc-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.kahraman-vpc-text {
    margin-bottom: 16px;
}

.kahraman-vpc-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0a192f;
    margin: 0 0 8px 0;
    transition: color 0.3s ease;
}

.kahraman-vpc:hover .kahraman-vpc-title {
    color: var(--accent, #db2424);
}

.kahraman-vpc-desc {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.kahraman-vpc-specs {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.kahraman-vpc-spec {
    display: flex;
    flex-direction: column;
}

.kahraman-vpc-spec-label {
    display: block;
    color: #9ca3af;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.kahraman-vpc-spec-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #4b5563;
    font-weight: 500;
}

/* ==========================================================================
   Vehicle Detail Gallery Widget
   ========================================================================== */
.kahraman-vdg {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.kahraman-vdg-main {
    aspect-ratio: 4/3;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.kahraman-vdg-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kahraman-vdg-thumbs {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.kahraman-vdg-thumb {
    min-width: 120px;
    aspect-ratio: 1;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.kahraman-vdg-thumb:hover,
.kahraman-vdg-thumb.active {
    border-color: var(--accent, #db2424);
    border-width: 2px;
}

.kahraman-vdg-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   Vehicle Detail Info Widget
   ========================================================================== */
.kahraman-vdi {
    display: flex;
    flex-direction: column;
}

.kahraman-vdi-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(219, 36, 36, 0.1);
    color: var(--accent, #db2424);
    font-size: 12px;
    font-weight: 700;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    width: fit-content;
}

.kahraman-vdi-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #0a192f;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin: 0 0 16px 0;
}

.kahraman-vdi-desc {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 32px 0;
}

.kahraman-vdi-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.kahraman-vdi-hl {
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
}

.kahraman-vdi-hl-label {
    font-size: 12px;
    text-transform: uppercase;
    color: #6b7280;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.kahraman-vdi-hl-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 24px;
    color: var(--accent, #db2424);
    margin: 0;
}

.kahraman-vdi-hl-unit {
    font-size: 14px;
}

.kahraman-vdi-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.kahraman-vdi-btn-primary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 56px;
    background: var(--accent, #db2424);
    color: #ffffff;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 40px -10px rgba(219, 36, 36, 0.3);
    transition: all 0.3s ease;
}

.kahraman-vdi-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px -10px rgba(219, 36, 36, 0.4);
}

.kahraman-vdi-btn-secondary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 56px;
    background: #ffffff;
    color: #0a192f;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.kahraman-vdi-btn-secondary:hover {
    border-color: var(--accent, #db2424);
    color: var(--accent, #db2424);
}

/* ==========================================================================
   Vehicle Specs Table Widget
   ========================================================================== */
.kahraman-vst {
    margin-top: 80px;
}

.kahraman-vst-title {
    font-size: 30px;
    font-weight: 900;
    color: #0a192f;
    margin: 0 0 32px 0;
    padding-left: 16px;
    border-left: 4px solid var(--accent, #db2424);
}

.kahraman-vst-table-wrap {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.kahraman-vst-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.kahraman-vst-table thead {
    background: #0a192f;
    color: #ffffff;
}

.kahraman-vst-table th {
    padding: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.kahraman-vst-table tbody tr {
    border-bottom: 1px solid #e5e7eb;
}

.kahraman-vst-table tbody tr.even {
    background: #f8fafc;
}

.kahraman-vst-table tbody tr.odd {
    background: #ffffff;
}

.kahraman-vst-table tbody tr:last-child {
    border-bottom: none;
}

.kahraman-vst-table td {
    padding: 20px;
    font-weight: 500;
}

.kahraman-vst-feature {
    color: #6b7280;
}

.kahraman-vst-value {
    font-family: 'JetBrains Mono', monospace;
    color: #0a192f;
}

/* ==========================================================================
   Vehicle Usage Areas Widget
   ========================================================================== */
.kahraman-vua {
    margin-top: 80px;
    padding: 64px 40px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
}

.kahraman-vua-header {
    text-align: center;
    margin-bottom: 48px;
}

.kahraman-vua-title {
    font-size: 36px;
    font-weight: 900;
    color: #0a192f;
    margin: 0 0 16px 0;
}

.kahraman-vua-subtitle {
    font-size: 16px;
    color: #6b7280;
    max-width: 672px;
    margin: 0 auto;
    line-height: 1.6;
}

.kahraman-vua-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.kahraman-vua-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px;
    border-radius: 16px;
    background: #f7f7f8;
    transition: transform 0.3s ease;
}

.kahraman-vua-card:hover {
    transform: scale(1.05);
}

.kahraman-vua-icon {
    width: 64px;
    height: 64px;
    background: rgba(219, 36, 36, 0.1);
    color: var(--accent, #db2424);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.kahraman-vua-icon .material-symbols-outlined {
    font-size: 36px;
}

.kahraman-vua-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #0a192f;
    margin: 0 0 12px 0;
}

.kahraman-vua-card-desc {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   Vehicle Related Products Widget
   ========================================================================== */
.kahraman-vrp {
    margin-top: 96px;
    margin-bottom: 80px;
}

.kahraman-vrp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.kahraman-vrp-title {
    font-size: 30px;
    font-weight: 900;
    color: #0a192f;
    margin: 0;
}

.kahraman-vrp-grid {
    display: flex;
    gap: 24px;
    overflow-x: hidden;
}

.kahraman-vrp-card {
    min-width: 300px;
    flex: 1;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.kahraman-vrp-card:hover {
    border-color: var(--accent, #db2424);
}

.kahraman-vrp-image {
    height: 192px;
    background-size: cover;
    background-position: center;
}

.kahraman-vrp-content {
    padding: 24px;
}

.kahraman-vrp-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #0a192f;
    margin: 0 0 8px 0;
}

.kahraman-vrp-card-desc {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 16px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.kahraman-vrp-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent, #db2424);
    display: flex;
    align-items: center;
    gap: 8px;
}

.kahraman-vrp-link .material-symbols-outlined {
    font-size: 12px;
}

/* Responsive for Vehicle Detail Widgets */
@media (max-width: 1024px) {
    .kahraman-vdi-title {
        font-size: 36px;
    }

    .kahraman-vua-grid {
        grid-template-columns: 1fr;
    }

    .kahraman-vrp-grid {
        overflow-x: auto;
    }
}

@media (max-width: 768px) {
    .kahraman-vdi-title {
        font-size: 28px;
    }

    .kahraman-vdi-hl-value {
        font-size: 18px;
    }

    .kahraman-vst-title,
    .kahraman-vrp-title {
        font-size: 24px;
    }

    .kahraman-vua-title {
        font-size: 28px;
    }

    .kahraman-vua {
        padding: 40px 24px;
    }
}