/* =============================================================================
   Fora — site özel stilleri (Roboto, blur, navbar, dil dropdown, yardımcı sınıflar)
   soft-design-system-pro.css’ten sonra yüklenir.
   ============================================================================= */

/* İletişim — bilgi kartı (ikon kutusu, kompakt yükseklik) */
.contact-info-card {
    width: 100%;
}

.contact-info-icon {
    width: 2.5rem;
    height: 2.5rem;
}

/* Hizmet detay — breadcrumb: navbar ile aynı cam / blur hissi */
.service-detail-breadcrumb-bar {
    --bs-breadcrumb-divider: "/";
    background-color: rgba(255, 255, 255, 0.78) !important;
    -webkit-backdrop-filter: saturate(1.35) blur(20px);
    backdrop-filter: saturate(1.35) blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.65);
}

.service-detail-breadcrumb-bar .breadcrumb-item a {
    color: #344767;
    text-decoration: none;
}
.breadcrumb{
    background-color:unset;
}
.service-detail-breadcrumb-bar .breadcrumb-item a:hover {
    color: var(--primary-green, #448376);
}

.service-detail-breadcrumb-bar .breadcrumb-item.active {
    color: #67748e;
}

/* Hizmet detay — yan sütun: alt alta ayrı cam kutular */
.service-detail-aside-stack {
    position: sticky;
    top: 6rem;
}

.service-detail-aside-panel {
    padding: 1.35rem 1.25rem 1.4rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: saturate(1.45) blur(22px);
    backdrop-filter: saturate(1.45) blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow:
        0 0.35rem 1.25rem rgba(52, 71, 103, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.service-detail-aside-empty {
    color: #8392ab;
    line-height: 1.5;
}

.service-detail-aside-title {
    font-size: 0.6875rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8392ab;
    margin: 0 0 1.25rem;
    font-weight: 700;
    line-height: 1.4;
}

.service-detail-aside-links li {
    padding-bottom: 1.125rem;
    margin-bottom: 1.125rem;
    border-bottom: 1px solid rgba(103, 116, 142, 0.1);
}

.service-detail-aside-links li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-detail-aside-link {
    display: block;
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1.45;
    color: #344767;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.service-detail-aside-link:hover {
    color: var(--primary-green, #448376);
}

.service-detail-aside-excerpt {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #67748e;
    margin: 0.5rem 0 0;
}

.service-detail-aside-cta {
    padding: 1.35rem 1.25rem 1.5rem;
    border-radius: 1rem;
    background: linear-gradient(
        145deg,
        rgba(68, 131, 118, 0.12) 0%,
        rgba(255, 255, 255, 0.55) 55%,
        rgba(232, 240, 238, 0.35) 100%
    );
    border: 1px solid rgba(68, 131, 118, 0.18);
    box-shadow:
        0 0.35rem 1.25rem rgba(52, 71, 103, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.service-detail-aside-cta-title {
    font-size: 1rem;
    font-weight: 700;
    color: #344767;
    margin: 0 0 0.65rem;
    line-height: 1.35;
}

.service-detail-aside-cta-text {
    font-size: 0.875rem;
    line-height: 1.65;
    color: #67748e;
    margin: 0 0 1.25rem;
}

@media (max-width: 991.98px) {
    .service-detail-aside-stack {
        position: static;
        margin-top: 0.5rem;
    }
}

/* Hizmet detay — mizanpaj: görsel sağda, metin soldan akar (float) */
.service-detail-magazine {
    min-width: 0;
}

.service-detail-float-media {
    float: right;
    width: 42%;
    max-width: 22rem;
    margin: 0 0 1rem 1.25rem;
}

.service-detail-float-media img {
    display: block;
    width: 100%;
    height: auto;
}

.service-detail-content {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #333;
}

.service-detail-content img {
    max-width: 100%;
    height: auto;
}

.service-detail-content h2,
.service-detail-content h3,
.service-detail-content h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .service-detail-float-media {
        float: none;
        width: 100%;
        max-width: none;
        margin: 0 0 1.25rem 0;
    }
}

html[dir="rtl"] .service-detail-float-media,
body.direction-rtl .service-detail-float-media {
    float: left;
    margin: 0 1.25rem 1rem 0;
}

:root {
    --primary-green: #448376;
    --primary-green-dark: #356b5f;
    --primary-green-light: #e8f0ee;
    /* Tema Inter tanımlar; Roboto ile override */
    --bs-font-sans-serif: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
    --bs-body-font-family: var(--bs-font-sans-serif);
}

/* Navbar cam — .blur.blur-rounded */
.blur.blur-rounded {
    border-radius: 11px !important;
}

body {
    font-family: var(--bs-body-font-family);
    overflow-x: hidden;
}

/* Temadaki .text-sans-serif → Inter !important; Roboto’ya çevir */
.text-sans-serif {
    font-family: var(--bs-body-font-family) !important;
}

/* ---------- Marka yeşili (Tailwind sınıf adlarına yakın yardımcılar) ---------- */
.bg-primary-green {
    background-color: var(--primary-green) !important;
}
.bg-primary-green-dark {
    background-color: var(--primary-green-dark) !important;
}
.bg-primary-green-light {
    background-color: var(--primary-green-light) !important;
}
.text-primary-green {
    color: var(--primary-green) !important;
}
.text-primary-green-dark {
    color: var(--primary-green-dark) !important;
}
.border-primary-green {
    border-color: var(--primary-green) !important;
}
.hover\:bg-primary-green-dark:hover {
    background-color: var(--primary-green-dark) !important;
}
.hover\:text-primary-green:hover {
    color: var(--primary-green) !important;
}
.hover\:bg-primary-green-light:hover {
    background-color: var(--primary-green-light) !important;
}

/* Opaklıklı arka planlar (Detail, Contact, FAQ vb.) */
.from-primary-green-10 {
    background: linear-gradient(to bottom right, rgba(68, 131, 118, 0.1), #fff, rgba(232, 240, 238, 0.05));
}
.bg-primary-green-light-30 {
    background-color: rgba(232, 240, 238, 0.3) !important;
}

/* ---------- Görseller ---------- */
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.bg-soft {
    background-color: #153866

}
/* ---------- RTL ---------- */
html[dir="rtl"],
body.direction-rtl {
    direction: rtl;
}

html[dir="rtl"] .text-left,
body.direction-rtl .text-left {
    text-align: right;
}

html[dir="rtl"] .text-right,
body.direction-rtl .text-right {
    text-align: left;
}

/* ---------- Navbar: ana menü tipografisi ---------- */
.navbar-nav > .nav-item > .nav-link {
    font-size: 1.015rem;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.35;
}

.navbar-nav > .nav-item > .nav-link.active,
.navbar-nav > .nav-item > .nav-link.fw-semibold {
    font-weight: 600;
}

/*
 * Mobil: position:absolute navbar, üstteki position:sticky .container’ı containing block sanıp
 * yatayda kayabiliyor. .navbar-sticky-col (col-12) position:relative ile CB sütuna alınır;
 * inset-inline ile sol/sağ hero .container hizası korunur.
 */
@media (max-width: 991.98px) {
    .navbar-sticky-col > .navbar.position-absolute {
        inset-inline: 0;
        width: 100%;
        max-width: 100%;
        margin-inline: 0;
        box-sizing: border-box;
    }
}

/* ---------- Dil seçici (dropdown-toggle yok — tema ::after ile çakışmayı önler) ---------- */
.navbar-language-dropdown {
    position: relative;
    z-index: 1035;
    flex-shrink: 0;
}

.navbar-language-dropdown > .navbar-language-btn {
    font-size: 1.015rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.35;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar-language-dropdown .navbar-language-chevron {
    font-size: 0.65rem;
    line-height: 1;
    opacity: 0.85;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.navbar-language-dropdown .navbar-language-btn.show .navbar-language-chevron {
    transform: rotate(180deg);
}

#navbarFora .navbar-language-dropdown .dropdown-menu {
    display: none !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: none;
    visibility: hidden;
    position: absolute !important;
    top: 100% !important;
    left: auto !important;
    right: 0 !important;
    margin-top: 0.35rem !important;
    margin-bottom: 0 !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

#navbarFora .navbar-language-dropdown .dropdown-menu.show {
    display: block !important;
    pointer-events: auto;
    visibility: visible;
}

#navbarFora .navbar-language-dropdown .dropdown-menu::before {
    content: none !important;
    display: none !important;
}

html[dir="rtl"] #navbarFora .navbar-language-dropdown .dropdown-menu,
body.direction-rtl #navbarFora .navbar-language-dropdown .dropdown-menu {
    right: auto !important;
    left: 0 !important;
}

@media (max-width: 991.98px) {
    #navbarFora.navbar-collapse {
        overflow: visible;
    }
}

/* ---------- Navbar scroll gölgesi ---------- */
.navbar-scroll {
    transition: all 0.3s ease;
}

.navbar-scroll.navbar-scrolled {
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.08) !important;
}

/* ---------- FAQ (SSS) ---------- */
.faq-page-accordion .accordion-button.faq-page-accordion__btn {
    box-shadow: none;
    font-size: 0.95rem;
    line-height: 1.45;
    background: #fff;
}

.faq-page-accordion .accordion-button.faq-page-accordion__btn:not(.collapsed) {
    background: linear-gradient(135deg, rgba(68, 131, 118, 0.1) 0%, rgba(255, 255, 255, 1) 55%);
    color: #27272a;
}

.faq-page-accordion .accordion-button.faq-page-accordion__btn:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-page-accordion__icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary-green-light, #e8f0ee);
    color: var(--primary-green, #448376);
}

.faq-page-accordion .accordion-button:not(.collapsed) .faq-page-accordion__icon {
    background: rgba(68, 131, 118, 0.18);
    color: var(--primary-green-dark, #356b5f);
}

.faq-page-accordion__answer p:last-child {
    margin-bottom: 0;
}

.faq-page-accordion__answer img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

a.faq-cta-btn.bg-primary-green:hover {
    color: #fff !important;
    background-color: var(--primary-green-dark, #356b5f) !important;
}

/* ---------- Footer ---------- */
.footer.bg-gradient-dark .nav-link:hover {
    opacity: 1 !important;
    color: #fff !important;
}

/* Footer sosyal: Font Awesome pseudo-öğelerinin tema fontundan etkilenmemesi */
.footer-social-list .footer-social-icon {
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased;
}

/* Hizmetler sütunu: uzun başlıklar düzgün kırılır, satır sayısı sınırlı, tam metin title ile */
.footer-services-column .footer-services-list {
    margin: 0;
    padding: 0;
}

.footer-services-column .footer-services-item {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-services-column .footer-services-item:last-child {
    border-bottom: none;
}

.footer-services-column .footer-services-link {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-word;
    line-height: 1.45;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    padding: 0.55rem 0 0.55rem 0.7rem;
    margin: 0;
    border-left: 3px solid rgba(212, 175, 55, 0.35);
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.footer-services-column .footer-services-link:hover {
    color: #fff;
    border-left-color: #d4af37;
    background-color: rgba(255, 255, 255, 0.04);
}

/* Kontakt satırları: hizmetler listesi ile aynı çerçeve / hover */
.footer-services-column .footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0.55rem 0 0.55rem 0.7rem;
    border-left: 3px solid rgba(212, 175, 55, 0.35);
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88);
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.footer-services-column a.footer-contact-row:hover {
    color: #fff;
    border-left-color: #d4af37;
    background-color: rgba(255, 255, 255, 0.04);
}

.footer-services-column .footer-contact-row--static {
    cursor: default;
}

.footer-services-column .footer-contact-icon {
    margin-top: 0.12rem;
    color: #d4af37;
    font-size: 0.9rem;
    width: 1.1rem;
    text-align: center;
}

.footer-services-column .footer-contact-line {
    word-break: break-word;
}

.footer-services-column .footer-contact-sub {
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.35;
}

.footer-services-column a.footer-contact-row:hover .footer-contact-sub {
    color: rgba(255, 255, 255, 0.72);
}

/* ---------- Mobil: başlıklar ---------- */
@media (max-width: 767px) {
    h1 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    h2 {
        font-size: 1.35rem !important;
        line-height: 1.35 !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    h3 {
        font-size: 1.15rem !important;
        line-height: 1.4 !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .text-3xl,
    .text-4xl,
    .text-5xl,
    .text-6xl {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }

    .container {
        max-width: 100%;
        box-sizing: border-box;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .page-header-about h1,
    .page-header-about .text-4xl {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

/* ---------- Sayfa içi içerik (prose) ---------- */
.prose {
    max-width: 65ch;
    color: #3f3f46;
}

.prose-lg {
    font-size: 1.125rem;
    line-height: 1.75;
}

.prose img {
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.prose h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #18181b;
}

.prose h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #18181b;
}

.prose ul {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    color: #3f3f46;
    list-style-type: disc;
}

.prose ol {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    color: #3f3f46;
    list-style-type: decimal;
}

.prose li {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.prose blockquote {
    border-left: 4px solid var(--primary-green);
    padding-left: 1rem;
    font-style: italic;
    color: #52525b;
    margin: 1rem 0;
}

.prose code {
    background-color: #f4f4f5;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
}

.prose pre {
    background-color: #18181b;
    color: #f4f4f5;
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.prose th {
    background-color: var(--primary-green-light);
    border: 1px solid #d4d4d8;
    padding: 0.5rem 1rem;
    text-align: left;
    font-weight: 600;
}

.prose td {
    border: 1px solid #d4d4d8;
    padding: 0.5rem 1rem;
}

.prose a {
    color: var(--primary-green);
    text-decoration: none;
}

.prose a:hover {
    text-decoration: underline;
}

.max-w-none {
    max-width: none !important;
}

@media (max-width: 767px) {
    .prose h2 {
        font-size: 1.75rem;
    }

    .prose p {
        font-size: 1rem;
    }
}

/* ---------- Tailwind sınıf adlarıyla uyumluluk (projede kullanılanlar) ---------- */
.text-gray-400 {
    color: #a1a1aa !important;
}
.text-gray-500 {
    color: #71717a !important;
}
.text-gray-600 {
    color: #52525b !important;
}
.text-gray-700 {
    color: #3f3f46 !important;
}
.text-gray-900 {
    color: #18181b !important;
}
.text-white {
    color: #fff !important;
}
.bg-gray-50 {
    background-color: #fafafa !important;
}
.bg-gray-100 {
    background-color: #f4f4f5 !important;
}
.border-gray-200 {
    border-color: #e4e4e7 !important;
}
.border-gray-300 {
    border-color: #d4d4d8 !important;
}

.flex {
    display: flex !important;
}
.inline-flex {
    display: inline-flex !important;
}
.flex-wrap {
    flex-wrap: wrap !important;
}
.flex-shrink-0 {
    flex-shrink: 0 !important;
}
.items-center {
    align-items: center !important;
}
.justify-center {
    justify-content: center !important;
}
.justify-between {
    justify-content: space-between !important;
}
.gap-2 {
    gap: 0.5rem !important;
}
.gap-4 {
    gap: 1rem !important;
}
.space-x-2 > * + * {
    margin-left: 0.5rem !important;
}
.inline-flex.items-center.space-x-2 > * + * {
    margin-left: 0.5rem !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}
.max-w-3xl {
    max-width: 48rem !important;
}
.max-w-4xl {
    max-width: 56rem !important;
}
.w-full {
    width: 100% !important;
}

.px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}
.px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}
.px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
}
.py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
}
.py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}
.py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}
.pt-8 {
    padding-top: 2rem !important;
}
.mt-12 {
    margin-top: 3rem !important;
}
.mb-4 {
    margin-bottom: 1rem !important;
}
.mb-6 {
    margin-bottom: 1.5rem !important;
}
.mr-2 {
    margin-right: 0.5rem !important;
}

.text-sm {
    font-size: 0.875rem !important;
}
.text-lg {
    font-size: 1.125rem !important;
}
.text-xl {
    font-size: 1.25rem !important;
}
.text-2xl {
    font-size: 1.5rem !important;
}
.text-3xl {
    font-size: 1.875rem !important;
}
.text-4xl {
    font-size: 2.25rem !important;
}
.font-bold {
    font-weight: 700 !important;
}
.font-semibold {
    font-weight: 600 !important;
}
.font-medium {
    font-weight: 500 !important;
}
.leading-relaxed {
    line-height: 1.625 !important;
}
.text-center {
    text-align: center !important;
}
.text-left {
    text-align: left !important;
}
.rounded-md {
    border-radius: 0.375rem !important;
}
.rounded-lg {
    border-radius: 0.5rem !important;
}
.rounded-full {
    border-radius: 9999px !important;
}
.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1) !important;
}
.border {
    border-width: 1px !important;
}
.border-b {
    border-bottom-width: 1px !important;
}
.border-t {
    border-top-width: 1px !important;
}
.overflow-hidden {
    overflow: hidden !important;
}
.relative {
    position: relative !important;
}
.absolute {
    position: absolute !important;
}
.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.transition {
    transition-property: color, background-color, border-color, opacity, transform;
    transition-duration: 0.2s;
}

/* Gradient bölümler (sınıf adlarında / kaçışı) */
.bg-gradient-to-r.from-primary-green.to-primary-green-dark,
.page-header-about.bg-gradient-to-r {
    background: linear-gradient(to right, var(--primary-green), var(--primary-green-dark)) !important;
}

.bg-gradient-to-br.from-primary-green\/10.via-white.to-primary-green-light\/5 {
    background: linear-gradient(to bottom right, rgba(68, 131, 118, 0.1), #fff, rgba(232, 240, 238, 0.05)) !important;
}

.bg-primary-green-light\/30 {
    background-color: rgba(232, 240, 238, 0.3) !important;
}

/* w-3/4 h-1 gibi kesirli sınıflar — ServiceDetail */
.w-3\/4 {
    width: 75% !important;
}
.h-1 {
    height: 0.25rem !important;
}

/* object-cover */
.object-cover {
    object-fit: cover !important;
}

/* container — Bootstrap .container ile çakışmayı azalt: mx-auto px ile kullanılan */
.container.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Tailwind sm: (640px+) md: (768px+) — sık kullanılanlar */
@media (min-width: 640px) {
    .sm\:px-6 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
    .sm\:py-16 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }
    .sm\:text-3xl {
        font-size: 1.875rem !important;
    }
    .sm\:text-4xl {
        font-size: 2.25rem !important;
    }
    .sm\:text-xl {
        font-size: 1.25rem !important;
    }
    .space-x-2.sm\:space-x-3 > * + * {
        margin-left: 0.75rem !important;
    }
}

@media (min-width: 768px) {
    .md\:py-20 {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }
    .md\:py-24 {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }
    .md\:text-5xl {
        font-size: 3rem !important;
    }
    .md\:text-base {
        font-size: 1rem !important;
    }
    .md\:space-x-3 > * + * {
        margin-left: 0.75rem !important;
    }
}

@media (min-width: 1024px) {
    .lg\:text-6xl {
        font-size: 3.75rem !important;
    }
}

/* ========== Ana sayfa: .shell-item — sadece nötr panel + düzgün nokta ızgarası (referans UI) ========== */
.page-header .shell-item {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    top: 16rem;
    width: 100%;
    height: min(43rem, 57vh);
    background-image: radial-gradient(circle at 1.5px 1.5px, rgb(0 0 0 / 8%) 1.5px, transparent 0);
    background-size: 16px 16px;
    mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
}
.page-header .index-hero-card-wrap {
    position: relative;
    z-index: 2;
}
.footer {
    border-top-left-radius: 34px;
    border-top-right-radius: 34px;
}

.page-header .index-hero-glass {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.72);
    -webkit-backdrop-filter: blur(20px) saturate(155%);
    backdrop-filter: blur(20px) saturate(155%);
    box-shadow:
        0 28px 56px -16px rgba(0, 0, 0, 0.09),
        0 0 0 1px rgba(255, 255, 255, 0.65) inset,
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

@keyframes tech-stack-chip-border-flow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.page-header .tech-stack-chip {
    --tech-chip-border-w: 1px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.5rem 0.75rem;
    border: var(--tech-chip-border-w) solid rgba(39, 39, 42, 0.14);
    border-radius: 0.65rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #27272a;
    background: rgba(255, 255, 255, 0.5);
    background-clip: padding-box;
    isolation: isolate;
    transition: box-shadow 0.25s ease;
}

/* Yalnızca çerçeve: düşük doygunluk, yavaş hareket (mask yoksa yukarıdaki düz border kalır) */
@supports ((-webkit-mask-composite: xor) or (mask-composite: exclude)) {
    .page-header .tech-stack-chip {
        border-color: transparent;
    }

    .page-header .tech-stack-chip::before {
        content: "";
        position: absolute;
        inset: calc(-1 * var(--tech-chip-border-w));
        z-index: -1;
        border-radius: inherit;
        padding: var(--tech-chip-border-w);
        background: linear-gradient(
            90deg,
            rgba(68, 131, 118, 0.42),
            rgba(249, 115, 22, 0.38),
            rgba(94, 114, 228, 0.36),
            rgba(68, 131, 118, 0.42)
        );
        background-size: 220% 100%;
        animation: tech-stack-chip-border-flow 14s ease-in-out infinite;
        -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        mask-composite: exclude;
        pointer-events: none;
    }

    .page-header .tech-stack-chip:hover::before {
        animation-duration: 18s;
        opacity: 0.95;
    }
}

.page-header .tech-stack-chip:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

@supports not ((-webkit-mask-composite: xor) or (mask-composite: exclude)) {
    .page-header .tech-stack-chip:hover {
        border-color: rgba(249, 115, 22, 0.4);
    }
}

@media (prefers-reduced-motion: reduce) {
    @supports ((-webkit-mask-composite: xor) or (mask-composite: exclude)) {
        .page-header .tech-stack-chip::before {
            animation: none;
            opacity: 1;
            background: linear-gradient(
                135deg,
                rgba(68, 131, 118, 0.38),
                rgba(249, 115, 22, 0.32)
            );
            background-size: 100% 100%;
        }

        .page-header .tech-stack-chip:hover::before {
            animation: none;
        }
    }
}

@media (max-width: 991.98px) {
    .page-header .shell-item {
        width: min(22rem, 86vw);
        height: min(16rem, 32vh);
        min-height: 180px;
        left: clamp(0.75rem, 3vw, 1.5rem);
        transform: none;
        top: clamp(4.25rem, 11vh, 6rem);
    }
}

@media (max-width: 575.98px) {
    .page-header .shell-item {
        width: min(17rem, 88vw);
        height: min(11rem, 26vh);
        min-height: 140px;
        border-radius: 1.25rem;
    }
}

/* Ana sayfa — turuncu bant özellik ikonları (SVG, font ikonu yerine) */
.index-feature-icon {
    display: block;
    line-height: 0;
}

.index-feature-icon img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
    vertical-align: middle;
}

/* Ana sayfa — referans logoları: eşit kutu, ortalanmış ölçek */
.referans-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    height: 7.5rem;
    padding: 1rem 1.25rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.75rem;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease,
        background-color 0.28s ease;
}

.referans-logo-box:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.08),
        0 4px 10px rgba(249, 115, 22, 0.12);
    background-color: #fffdfb;
}

.referans-logo-box img {
    display: block;
    max-width: 100%;
    max-height: 3.5rem;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: transform 0.28s ease;
}

.referans-logo-box:hover img {
    transform: scale(1.06);
}

@media (prefers-reduced-motion: reduce) {
    .referans-logo-box,
    .referans-logo-box img {
        transition: none;
    }

    .referans-logo-box:hover {
        transform: none;
    }

    .referans-logo-box:hover img {
        transform: none;
    }
}

@media (min-width: 768px) {
    .referans-logo-box {
        height: 8.5rem;
        padding: 1.25rem 1.5rem;
    }

    .referans-logo-box img {
        max-height: 4rem;
    }
}

/* ---------- Hizmetler (Dienstleistungen) — alternatif görsel kartlar ---------- */
.dienstleistungen-services-page {
    background-color: #ffffff;
}

.dienstleistungen-services-bg {
    background-color: #f4f7f6;
}

.dienstleistungen-section-kicker {
    letter-spacing: 0.08em;
}

.dienstleistungen-services-page .service-card.dienstleistungen-services-bg {
    border: none;
    border-radius: 24px;
    /* Simetrik gölge: yatay ofset yok, katmanlı derinlik */
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.05),
        0 4px 14px rgba(15, 23, 42, 0.07),
        0 14px 36px rgba(15, 23, 42, 0.09);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background-color: #f4f7f6;
    overflow: hidden;
}

.dienstleistungen-services-page .service-card.dienstleistungen-services-bg:hover {
    transform: translateY(-8px);
    box-shadow:
        0 2px 4px rgba(15, 23, 42, 0.06),
        0 8px 22px rgba(15, 23, 42, 0.1),
        0 22px 52px rgba(15, 23, 42, 0.13);
}

.dienstleistungen-services-page .service-card.dienstleistungen-services-bg .img-container {
    padding: 25px;
}

.dienstleistungen-services-page .service-card.dienstleistungen-services-bg .service-img {
    border-radius: 18px;
    object-fit: cover;
    width: 100%;
    height: 250px;
    box-shadow:
        0 1px 3px rgba(15, 23, 42, 0.06),
        0 6px 16px rgba(15, 23, 42, 0.1);
}

.dienstleistungen-services-page .service-card.dienstleistungen-services-bg .card-body {
    padding: 2rem 3rem;
}

@media (max-width: 767.98px) {
    .dienstleistungen-services-page .service-card.dienstleistungen-services-bg .card-body {
        padding: 1.5rem 1.25rem;
    }
}

.dienstleistungen-services-page .service-card.dienstleistungen-services-bg .gradient-text {
    background: linear-gradient(45deg, #ff6b6b, #c0392b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.dienstleistungen-services-page .service-card.dienstleistungen-services-bg .gradient-text-2 {
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* About — kart içi zengin metin */
.dienstleistungen-services-page .about-page-content,
.about-editorial-page .about-page-content {
    line-height: 1.75;
    color: #5a5f69;
    font-size: 1rem;
}

.dienstleistungen-services-page .about-page-content p:last-child,
.about-editorial-page .about-page-content p:last-child {
    margin-bottom: 0;
}

.dienstleistungen-services-page .about-page-content p + p,
.about-editorial-page .about-page-content p + p {
    margin-top: 1rem;
}

.dienstleistungen-services-page .about-page-content ul,
.dienstleistungen-services-page .about-page-content ol,
.about-editorial-page .about-page-content ul,
.about-editorial-page .about-page-content ol {
    margin-bottom: 1rem;
    padding-left: 1.25rem;
}

.dienstleistungen-services-page .about-page-content img,
.about-editorial-page .about-page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

/* About — minimal editoryal (Hakkımızda) */
.about-editorial-page {
    background-color: #ffffff;
    color: #111111;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.about-editorial-page .about-editorial-breadcrumb-link {
    color: #6c757d;
    text-decoration: none;
}

.about-editorial-page .about-editorial-breadcrumb-link:hover {
    color: #111111;
}

.about-editorial-page .about-editorial-breadcrumb-active {
    color: #111111;
}

.about-editorial-page .editorial-line {
    width: 40px;
    height: 2px;
    background-color: #111111;
    margin-bottom: 2rem;
}

.about-editorial-page .title-display {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    color: #111111;
    -webkit-text-fill-color: currentColor;
}

.about-editorial-page .title-display .text-secondary,
.about-editorial-page .title-display span.text-secondary {
    color: #6b7280 !important;
    -webkit-text-fill-color: #6b7280 !important;
}

.about-editorial-page .main-image {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 0 80px 0 80px;
}

.about-editorial-page .quote-box {
    position: absolute;
    bottom: -30px;
    left: -40px;
    background-color: #ffffff;
    padding: 30px 40px;
    border: 1px solid #eeeeee;
    max-width: 350px;
    z-index: 10;
    box-shadow: 0 12px 40px rgba(17, 17, 17, 0.06);
}

.about-editorial-page .minimal-link {
    color: #111111;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #111111;
    padding-bottom: 4px;
    transition: opacity 0.3s ease;
    letter-spacing: 0.08em;
}

.about-editorial-page .minimal-link:hover {
    opacity: 0.6;
}

.about-editorial-page .about-editorial-cms-border {
    border-color: #eeeeee !important;
}

@media (max-width: 991.98px) {
    .about-editorial-page .quote-box {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: -50px;
        margin-left: 20px;
        margin-bottom: 0;
    }

    .about-editorial-page .main-image {
        height: 400px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-editorial-page .minimal-link {
        transition: none;
    }
}

.editorial-line {
    width: 40px;
    height: 2px;
    background-color: #111111;
    margin-bottom: 2rem;
}

/* Büyük ve iddialı başlık */
.title-display {

    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    color: #111111;
    -webkit-text-fill-color: currentColor;
}

/* İkinci satır (text-secondary): tema / h1 içinde ezilmesin diye açık renk */
.title-display .text-secondary,
.title-display span.text-secondary {
    color: #6b7280 !important;
    -webkit-text-fill-color: #6b7280 !important;
}

/* Resim için minimal ayarlar */
.main-image {
    width: 100%;
    height: 650px;
    object-fit: cover;
    /* Hafif asimetrik bir kesim: sadece sağ üst ve sol alt köşeler yuvarlak */
    border-radius: 0 80px 0 80px;
}

/* Resmin üzerine taşan kreatif alıntı kutusu */
.quote-box {
    position: absolute;
    bottom: -30px;
    left: -40px;
    background-color: #ffffff;
    padding: 30px 40px;
    border: 1px solid #eeeeee;
    max-width: 350px;
    z-index: 10;
}

/* Altını çizen sade link efekti */
.minimal-link {
    color: #111111;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #111111;
    padding-bottom: 4px;
    transition: opacity 0.3s ease;
}

    .minimal-link:hover {
        opacity: 0.6;
    }

/* Mobil uyumluluk düzeltmeleri */
@media (max-width: 991px) {
    .title-display {
        font-size: 3rem;
    }

    .quote-box {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: -50px;
        margin-left: 20px;
    }

    .main-image {
        height: 400px;
    }
}

/* —— Cookie consent (Google Analytics) —— */
.cookie-consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1080;
    padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom, 0));
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.cookie-consent-banner[hidden] {
    display: none !important;
}

.cookie-consent-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-consent-text {
    flex: 1 1 16rem;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #344767;
}

.cookie-consent-text .cookie-consent-privacy-link {
    color: #5e72e4;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-consent-text .cookie-consent-privacy-link:hover,
.cookie-consent-text .cookie-consent-privacy-link:focus {
    color: #324cdd;
}

.cookie-consent-actions {
    flex-shrink: 0;
}

.cookie-consent-actions .btn {
    white-space: nowrap;
}

/* —— WhatsApp yüzen buton —— */
.whatsapp-float {
    position: fixed;
    z-index: 1090;
    inset-inline-end: max(1rem, env(safe-area-inset-right, 0px));
    bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.85rem 0.65rem 0.65rem;
    border-radius: 999px;
    background: linear-gradient(145deg, #25d366 0%, #128c7e 100%);
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    box-shadow:
        0 4px 14px rgba(37, 211, 102, 0.45),
        0 2px 6px rgba(0, 0, 0, 0.12);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.whatsapp-float:hover {
    color: #fff !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 8px 22px rgba(37, 211, 102, 0.5),
        0 4px 10px rgba(0, 0, 0, 0.15);
}

.whatsapp-float:focus-visible {
    outline: 3px solid rgba(37, 211, 102, 0.55);
    outline-offset: 3px;
}

.whatsapp-float-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    font-size: 1.5rem;
    line-height: 1;
}

.whatsapp-float-text {
    padding-inline-end: 0.35rem;
}

@media (max-width: 575.98px) {
    .whatsapp-float-text {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .whatsapp-float {
        padding: 0.65rem;
        border-radius: 50%;
    }
}

/* =============================================================================
   Font Awesome — tema ile çakışmayı önleme + kök URL ile font garantisi
   (all.min.css ../webfonts göreli yolu bazı ortamlarda kırılabiliyor)
   ============================================================================= */
@font-face {
    font-family: "Font Awesome 7 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("/webfonts/fa-brands-400.woff2") format("woff2");
}

@font-face {
    font-family: "Font Awesome 7 Free";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url("/webfonts/fa-solid-900.woff2") format("woff2");
}

@font-face {
    font-family: "Font Awesome 7 Free";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("/webfonts/fa-regular-400.woff2") format("woff2");
}

.footer-social-list .fa-brands,
.footer-social-list .fab,
.whatsapp-float .fa-brands,
.whatsapp-float .fab {
    font-family: "Font Awesome 7 Brands", "Font Awesome 6 Brands", "Font Awesome 5 Brands" !important;
    font-weight: 400 !important;
}

.footer-social-list .fa-solid,
.footer-social-list .fas,
.alert .fa-solid,
.alert .fas,
.whatsapp-float .fa-solid,
.whatsapp-float .fas {
    font-family: "Font Awesome 7 Free", "Font Awesome 6 Free", "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}