* {
    font-family: "Manrope", sans-serif;
}

body {
    font-family: "Manrope", sans-serif;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.text-shadow-white {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Yavaş yukarı-aşağı ok animasyonu */
@keyframes floatY {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}
.animate-float-slow {
    animation: floatY 2.5s ease-in-out infinite;
}

/* Sol içerik alanı arka plan gif */
.hero-left {
    position: relative;
    overflow: hidden;
}
.hero-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("img/corporate.gif") center / cover no-repeat;

    z-index: 0;
    pointer-events: none;
}
.hero-left > * {
    position: relative;
    z-index: 1;
}
.kadro-gif {
    mix-blend-mode: screen !important;
}
.kadro-screen {
    position: absolute; /* yalnızca GIF, layout'u etkilemesin */
    left: 4.75rem; /* ~12px */
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    pointer-events: none;
    background-color: #193767; /* kart rengi */
    background-image: url("img/kadro.gif");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain; /* görseli orijinal oranla büyüt */
    mix-blend-mode: screen; /* arka plan rengine göm */
}
/* Kart hover efekti ve altta kırmızı çizgi */
.card-hover {
    position: relative;
    transition: transform 200ms ease, box-shadow 200ms ease,
        background-color 200ms ease;
}
.card-hover::after {
    content: "";
    position: absolute;
    left: 3rem; /* p-6 iç boşluk hizası */
    right: auto;
    width: 80px; /* çizgi kısaltıldı */
    bottom: 0.25rem; /* tüm kartlarda görünmesi için içte kalsın */
    height: 4px;
    background: #e53935; /* cevikbas-red */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 800ms cubic-bezier(0, 0, 0.2, 1); /* hızlıdan yavaşa (ease-out) */
    z-index: 1;
}
.card-hover:hover::after {
    transform: scaleX(1);
}

/* Mobil Menü Animasyonları */
.mobile-menu-slide-in {
    animation: slideInRight 0.5s ease-out forwards;
}

.mobile-menu-slide-out {
    animation: slideOutRight 0.5s ease-in forwards;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Mobil menü link animasyonları */
.mobile-menu-link {
    position: relative;
    overflow: hidden;
}

.mobile-menu-link::before {
    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(220, 38, 38, 0.1),
        transparent
    );
    transition: left 0.5s ease;
}

.mobile-menu-link:hover::before {
    left: 100%;
}

/* Mobil menü buton animasyonu */
.mobile-menu-button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-button:hover {
    transform: scale(1.1);
    background-color: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
}

/* Dil seçici animasyonu */
.mobile-language-option {
    position: relative;
    overflow: hidden;
}

.mobile-language-option::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.3s ease;
}

.mobile-language-option:hover::after {
    left: 100%;
}

/* Mobil menü backdrop blur efekti */
.mobile-menu-backdrop {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Touch-friendly hover states */
@media (hover: none) and (pointer: coarse) {
    .mobile-menu-link:hover {
        background-color: rgba(220, 38, 38, 0.05);
    }

    .mobile-language-option:hover {
        transform: scale(1.02);
    }
}

/* Modern dil seçici slider */
.mobile-language-slider {
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

/* Modern kart hover efektleri */
.modern-contact-card {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modern-contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Gradient arka plan animasyonu */
.gradient-bg {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Tablet için özel stiller */
@media (min-width: 768px) and (max-width: 1023px) {
    .mobile-menu-overlay {
        padding: 2rem;
    }

    .mobile-menu-link {
        font-size: 1.5rem;
        padding: 1rem 0;
    }

    .modern-contact-card {
        padding: 1.5rem;
    }
}

/* Mobil için ek optimizasyonlar */
@media (max-width: 767px) {
    .modern-contact-card {
        padding: 1rem;
    }

    .mobile-language-slider {
        box-shadow: 0 1px 4px rgba(220, 38, 38, 0.4);
    }
}

/* Ürün kartları hover animasyonu */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Yatay scroll için scrollbar gizleme */
.scrollbar-hide {
    -ms-overflow-style: none; /* IE ve Edge */
    scrollbar-width: none; /* Firefox */
    -webkit-overflow-scrolling: touch; /* iOS için smooth scroll */
}

.scrollbar-hide::-webkit-scrollbar {
    display: none; /* Chrome, Safari ve Opera */
}

/* Carousel için smooth scroll - sadece mobil */
.carousel-container {
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.carousel-item {
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

/* Masaüstünde carousel iptal */
@media (min-width: 1024px) {
    .carousel-container {
        scroll-snap-type: none;
    }
    .carousel-item {
        scroll-snap-align: none;
    }
}

/* Editor Content Styles */
.editorcontent h1 {
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1a2b5b;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .editorcontent h1 {
        font-size: 1.875rem;
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .editorcontent h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
}

.editorcontent h2 {
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 700;
    color: #1a2b5b;
    margin-bottom: 0.875rem;
}

@media (min-width: 768px) {
    .editorcontent h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 1024px) {
    .editorcontent h2 {
        font-size: 1.875rem;
        margin-bottom: 1.25rem;
    }
}

.editorcontent h3 {
    font-size: 1.125rem;
    line-height: 1.4;
    font-weight: 700;
    color: #1a2b5b;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .editorcontent h3 {
        font-size: 1.25rem;
        margin-bottom: 0.875rem;
    }
}

@media (min-width: 1024px) {
    .editorcontent h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

.editorcontent h4 {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 600;
    color: #1a2b5b;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .editorcontent h4 {
        font-size: 1.125rem;
        margin-bottom: 0.625rem;
    }
}

@media (min-width: 1024px) {
    .editorcontent h4 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
}

.editorcontent p {
    font-size: 0.875rem;
    line-height: 1.625;
    color: #333333;
}

@media (min-width: 768px) {
    .editorcontent p {
        font-size: 0.9375rem;
        line-height: 1.7;
    }
}

@media (min-width: 1024px) {
    .editorcontent p {
        font-size: 1.1rem;
        line-height: 1.75;
    }
}

.editorcontent figure {
    margin-top: 1.25rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .editorcontent figure {
        margin-top: 1.75rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    .editorcontent figure {
        margin-top: 2.5rem;
        margin-bottom: 2.5rem;
    }
}

.editorcontent figure img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.editorcontent figcaption {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.5rem;
    text-align: center;
    font-style: italic;
}

@media (min-width: 768px) {
    .editorcontent figcaption {
        font-size: 0.8125rem;
        margin-top: 0.625rem;
    }
}

@media (min-width: 1024px) {
    .editorcontent figcaption {
        font-size: 0.875rem;
        margin-top: 0.75rem;
    }
}

.editorcontent ul,
.editorcontent ol {
    margin-bottom: 0rem;
    padding-left: 1.25rem;
}



@media (min-width: 1024px) {
    .editorcontent ul,
    .editorcontent ol {
        margin-bottom: 0rem;
        padding-left: 1.5rem;
    }
}

.editorcontent ul {
    list-style-type: disc;
}

.editorcontent ol {
    list-style-type: decimal;
}

.editorcontent li {
    font-size: 0.875rem;
    line-height: 1.625;
    color: #333333;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .editorcontent li {
        font-size: 0.9375rem;
        line-height: 1.7;
        margin-bottom: 0.625rem;
    }
}

@media (min-width: 1024px) {
    .editorcontent li {
        font-size: 1.125rem;
        line-height: 1.75;
        margin-bottom: 0.75rem;
    }
}

.editorcontent li strong {
    font-weight: 600;
    color: #1a2b5b;
}

.editorcontent a {
    color: #e53935;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.editorcontent blockquote {
    border-left: 3px solid #e53935;
    padding-left: 1rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    font-style: italic;
    color: #1a2b5b;
    font-size: 0.9375rem;
    line-height: 1.625;
    background-color: #f9fafb;
}

@media (min-width: 768px) {
    .editorcontent blockquote {
        border-left: 4px solid #e53935;
        padding-left: 1.25rem;
        padding-top: 0.875rem;
        padding-bottom: 0.875rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
        font-size: 1.0625rem;
        line-height: 1.7;
    }
}

@media (min-width: 1024px) {
    .editorcontent blockquote {
        padding-left: 1.5rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
        font-size: 1.25rem;
        line-height: 1.75;
    }
}

/* Blog Detay Sayfa Responsive Optimizasyonlar */
@media (max-width: 767px) {
    /* Mobil görünüm için özel ayarlamalar */
    .container {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Blog kartları mobil görünümü */
    .product-card {
        min-height: auto;
    }

    /* Hero section mobil optimizasyonu */
    section {
        scroll-margin-top: 60px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* Tablet görünüm için özel ayarlamalar */
    .container {
        max-width: 720px;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    /* Blog kartları tablet görünümü */
    .product-card:hover {
        transform: translateY(-6px);
    }
}

@media (min-width: 1024px) {
    /* Desktop görünüm korunuyor */
    .container {
        max-width: 1280px;
    }
}

/* 40yil.php sayfası için özel responsive ayarlar */
@media (max-width: 767px) {
    /* Mobil için özel ayarlar */
    section {
        overflow-x: hidden;
    }

    /* Hero section mobil optimizasyonu */
    .relative.min-h-\[600px\] {
        min-height: 600px !important;
    }

    /* Büyük başlıklar için mobil ayar */
    h1,
    h2 {
        word-break: break-word;
        hyphens: auto;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* Tablet için özel ayarlar */
    .relative.min-h-\[700px\] {
        min-height: 700px !important;
    }
}

/* Container responsive genişlikler */
@media (max-width: 640px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (min-width: 641px) and (max-width: 767px) {
    .container {
        max-width: 640px;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        max-width: 768px;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .container {
        max-width: 1024px;
    }
}

/* Sürdürülebilirlik Sayfası Responsive Optimizasyonlar */

/* Mobil cihazlar için (0-767px) */
@media (max-width: 767px) {
    /* Hero section mobil optimizasyonu */
    section[style*="sur-bg.png"] {
        min-height: 800px !important;
        height: auto !important;
    }

    /* Hero başlık mobil ayarları */
    section h1 {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
        padding-bottom: 1rem;
    }

    /* Stratejik kart (yeşil arka planlı) mobil optimizasyonu */
    .bg-cevikbas-blue.rounded-xl {
        height: auto !important;
        min-height: auto !important;
        padding: 2rem 1rem !important;
    }

    /* 3 kartlı grid mobilde tek sütun */
    .grid.grid-cols-3 {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-right: 0 !important;
    }

    /* Kartlar mobilde tam genişlik */
    .bg-\[\#DFF587\],
    .bg-\[\#243010\],
    .bg-white.rounded-xl.p-8 {
        padding: 1.5rem !important;
        margin: 0 !important;
    }

    /* Stratejik Hedeflerimiz başlığı mobil */
    h2.text-5xl {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }

    /* Stratejik hedefler kartları mobil */
    .flex.gap-4.mb-6 {
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .flex.gap-4.mb-6 > div {
        width: 100% !important;
        padding: 1.5rem !important;
    }

    /* Başarı ölçütleri başlığı mobil */
    h2.text-\[100px\] {
        font-size: 2.5rem !important;
        line-height: 1.1 !important;
    }

    /* Başarı kartları mobilde 1 sütun */
    .grid.grid-cols-2.sm\:grid-cols-4 {
        grid-template-columns: 1fr !important;
    }

    /* Başarı kartları içerik */
    .grid.grid-cols-2.sm\:grid-cols-4 h3 {
        font-size: 1.25rem !important;
        width: 100% !important;
    }

    /* Alt açıklama metni mobil */
    .text-center.mb-8 {
        width: 100% !important;
    }

    .text-center.mb-8 p {
        font-size: 1rem !important;
    }

    /* Düz grid kolonları mobil ayarı */
    .grid.grid-cols-1.lg\:grid-cols-2 {
        width: 100% !important;
    }
}

/* Tablet cihazlar için (768px-1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    /* Hero section tablet optimizasyonu */
    section[style*="sur-bg.png"] {
        height: 700px !important;
    }

    /* Hero başlık tablet ayarları */
    section h1 {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }

    /* Stratejik kart tablet optimizasyonu */
    .bg-cevikbas-blue.rounded-xl {
        height: auto !important;
        min-height: 400px !important;
        padding: 3rem 2rem !important;
    }

    /* 3 kartlı grid tablette 2 sütun */
    .grid.grid-cols-3 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
        margin-right: 0 !important;
    }

    /* Son kart tam genişlik */
    .grid.grid-cols-3 > div:last-child {
        grid-column: span 2 !important;
    }

    /* Stratejik Hedeflerimiz başlığı tablet */
    h2.text-5xl {
        font-size: 3rem !important;
    }

    /* Stratejik hedefler kartları tablet */
    .flex.gap-4.mb-6 {
        flex-wrap: wrap !important;
    }

    .flex.gap-4.mb-6 > div {
        flex: 1 1 calc(50% - 0.5rem) !important;
        min-width: 300px !important;
    }

    /* Başarı ölçütleri başlığı tablet */
    h2.text-\[100px\] {
        font-size: 4rem !important;
    }

    /* Başarı kartları tablette 2 sütun */
    .grid.grid-cols-2.sm\:grid-cols-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Alt açıklama metni tablet */
    .text-center.mb-8 {
        width: 80% !important;
    }

    .text-center.mb-8 p {
        font-size: 1.25rem !important;
    }

    /* Grid kolonları tablet ayarı */
    .grid.grid-cols-1.lg\:grid-cols-2 {
        width: 85% !important;
    }
}

/* Küçük tablet için (768px-900px) */
@media (min-width: 768px) and (max-width: 900px) {
    /* Kartlar daha küçük padding */
    .bg-\[\#DFF587\],
    .bg-\[\#243010\],
    .bg-white.rounded-xl.p-8 {
        padding: 1.25rem !important;
    }

    /* Başlıklar daha küçük */
    .bg-\[\#DFF587\] p,
    .bg-\[\#243010\] p,
    .bg-white.rounded-xl.p-8 p {
        font-size: 1rem !important;
    }
}

/* Genel mobil optimizasyonlar */
@media (max-width: 1023px) {
    /* Overflow önleme */
    section {
        overflow-x: hidden;
    }

    /* Container genişlik düzeltmesi */
    .max-w-9xl {
        max-width: 100%;
    }

    /* Negatif margin düzeltmeleri mobil */
    [class*="mr-[-"] {
        margin-right: 0 !important;
    }

    /* Büyük padding ayarları mobil */
    .p-10,
    .p-12 {
        padding: 1.5rem !important;
    }

    .px-10,
    .px-12 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

/* Ekstra küçük ekranlar için (0-480px) */
@media (max-width: 480px) {
    /* Çok küçük font boyutları */
    h1 {
        font-size: 1.5rem !important;
    }

    h2 {
        font-size: 1.25rem !important;
    }

    /* Padding azaltma */
    .p-6,
    .p-8 {
        padding: 1rem !important;
    }

    /* Başarı kartları çok küçük ekranlarda */
    .grid.grid-cols-2.sm\:grid-cols-4 h3 {
        font-size: 1rem !important;
    }
}

/* Genel Responsive Optimizasyonlar */
@media (max-width: 1023px) {
    /* Max genişlik korunumu */
    body {
        max-width: 100vw;
        overflow-x: hidden;
    }

    /* Container'lar için güvenli boşluk */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Büyük görseller için responsive */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Kartlar için mobil optimizasyon */
    .product-card {
        min-height: auto !important;
    }
}

/* Tablet özel optimizasyonlar */
@media (min-width: 768px) and (max-width: 1023px) {
    /* Kartlar için tablet görünümü */
    .product-card:hover {
        transform: translateY(-4px);
    }

    /* Grid sistemleri tablet için */
    .grid {
        gap: 1rem;
    }
}

/* Touch cihazlar için optimizasyonlar */
@media (hover: none) and (pointer: coarse) {
    /* Touch-friendly buton boyutları */
    button,
    a {
        min-height: 44px;
        min-width: 44px;
    }

    /* Hover efektlerini tap için optimize et */
    .hover\:shadow-lg {
        transition: all 0.2s ease;
    }
}

/* Yatay kaydırmalı bölümler için mobil */
@media (max-width: 767px) {
    .overflow-x-auto {
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .overflow-x-auto > * {
        scroll-snap-align: start;
    }
}

/* Mobil için font optimizasyonları */
@media (max-width: 640px) {
    /* Minimum okunabilir font boyutu */
    body {
        font-size: 16px;
        -webkit-text-size-adjust: 100%;
    }

    /* Buton ve link için minimum boyut */
    button,
    a[role="button"],
    input[type="submit"],
    input[type="button"] {
        min-height: 44px;
        padding: 0.75rem 1rem;
    }

    /* Form elemanları için touch-friendly boyut */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    textarea,
    select {
        min-height: 44px;
        font-size: 16px; /* iOS zoom'u önlemek için */
    }
}

/* Video ve iframe responsive */
@media (max-width: 1023px) {
    iframe,
    video {
        max-width: 100%;
        height: auto;
    }

    /* Aspect ratio koruması */
    .video-container {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        height: 0;
        overflow: hidden;
    }

    .video-container iframe,
    .video-container video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

/* Print media query - opsiyonel */
@media print {
    /* Gereksiz elementleri gizle */
    header,
    footer,
    nav,
    .no-print {
        display: none !important;
    }

    /* Sayfa sonları */
    .page-break-after {
        page-break-after: always;
    }

    .page-break-before {
        page-break-before: always;
    }
}

/* Landscape orientation optimizasyonları */
@media (max-width: 767px) and (orientation: landscape) {
    /* Landscape modda padding azalt */
    section {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    /* Yükseklik sorunlarını çöz */
    .min-h-screen {
        min-height: 100vh;
    }
}

/* Reduced motion desteği */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark mode desteği - opsiyonel */
@media (prefers-color-scheme: dark) {
    /* Dark mode stilleri gerekirse buraya eklenebilir */
}

/* ===== INLINE STYLES FROM PHP FILES ===== */

/* Header.php - Mobil Menü Overlay Styles */
#mobileMenuOverlay:not(.translate-x-full) ~ header,
body.mobile-menu-open header {
    display: none !important;
}

@media (min-width: 769px) and (max-width: 1024px) {
    #mobileMenuOverlay h3 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    #mobileMenuOverlay ul li a {
        font-size: 1rem;
        padding: 0.5rem 0;
    }
}

/* Kariyerbasvuru.php - Form Styles */
.form-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.875rem 0;
    font-size: 0.875rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

.form-input:focus {
    border-bottom-color: #dc2626;
}

.form-input:hover {
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

.input-wrapper {
    position: relative;
}

.input-wrapper::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #e53935;
    z-index: 1;
}

/* File upload button styles */
.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-label:hover {
    border-bottom-color: rgba(220, 38, 38, 0.5);
}

.file-upload-label:hover .file-upload-text {
    color: white;
}

.file-upload-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.file-upload-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #dc2626;
    transition: transform 0.3s ease;
}

.file-upload-label:hover .file-upload-icon {
    transform: scale(1.1);
}

/* Form responsive styles */
@media (max-width: 768px) {
    .form-input {
        padding: 0.75rem 0.875rem;
        font-size: 0.8125rem;
    }

    .form-input::placeholder {
        font-size: 0.8125rem;
    }

    .file-upload-label {
        padding: 0.75rem 0.875rem;
    }

    .file-upload-text {
        font-size: 0.8125rem;
    }
}

.step-circle {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.teklif-gif-effect {
    mix-blend-mode: screen !important;
}

/* Teklif-1.php - Float Animation and Form Styles */
@keyframes float {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.floating-shape {
    animation: float 6s ease-in-out infinite;
}

/* Teklif Popup Mobile Styles */
@media (max-width: 768px) {
    #teklifPopup {
        padding: 0.5rem;
    }

    #teklifPopup > div {
        max-height: 96vh;
        overflow-y: auto;
    }

    #teklifPopup .bg-\[#112E5D\] {
        padding: 2rem 1rem 1rem 1rem;
    }

    #teklifPopup .bg-\[#112E5D\] h2 {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }

    #teklifPopup .bg-\[#112E5D\] .my-8 {
        margin-top: 0.75rem;
        margin-bottom: 0.75rem;
    }

    #teklifPopup .bg-\[#112E5D\] img {
        width: 120px;
    }

    #teklifPopup .bg-\[#112E5D\] p {
        font-size: 0.688rem;
    }

    #teklifPopup .space-y-6 {
        row-gap: 1rem;
    }

    #teklifPopup .grid.grid-cols-2 {
        gap: 0.875rem;
    }

    #teklifPopup .form-input {
        font-size: 0.875rem;
        padding: 0.625rem 0;
    }

    #teklifPopup .form-input::placeholder {
        font-size: 0.813rem;
    }

    #teklifPopup #goToStep2 {
        width: 10rem;
        height: 10rem;
        bottom: -2rem;
        left: 50%;
        transform: translateX(-50%);
    }

    #teklifPopup #goToStep2 img {
        width: 280px;
        height: 280px;
    }

    #step2 button[type="submit"] {
        width: 10rem;
        height: 10rem;
        bottom: -2rem;
        left: 50%;
        transform: translateX(-50%);
    }

    #step2 button[type="submit"] img {
        width: 280px;
        height: 280px;
    }
}

/* Hakkimizda.php - Product Card Styles */
.shadow-red-glow {
    box-shadow: 0 0 50px rgba(220, 38, 38, 0.8);
}

/* Cozumler.php - Card Hover Styles */
.card-hover {
    box-shadow: 0 0 33.83px rgba(0, 0, 0, 0.1),
        0 0 33.83px rgba(255, 255, 255, 0.6);
}
.card-hover:hover {
    box-shadow: 0 0 33.83px rgba(0, 0, 0, 0.15),
        0 0 33.83px rgba(255, 255, 255, 0.8);
}

/* Videogaleri.php - Fancybox Backdrop */
.fancybox__backdrop {
    background: rgba(0, 0, 0, 0.85) !important;
}

/* Blog.php - Poppins Font Styles */
.poppins-font * {
    font-family: "Poppins", sans-serif;
}

.poppins-font body {
    font-family: "Poppins", sans-serif;
}

/* Index.php - Swiper Carousel Styles */
.productsSwiper,
.referencesSwiper {
    width: 100%;
    padding: 20px 0;
}

.swiper-slide {
    height: auto;
}

/* Neuretiyoruz.php - Gradient Text Styles */
.gradient-text-white {
    background: linear-gradient(90deg, #ffffff 0%, #758bad 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    shadow-color: rgb(255, 255, 255);
    shadow-offset: 0px 20px;
    shadow-blur-radius: 0px;
    shadow-spread-radius: 0px;
    shadow-color: rgba(117, 139, 189, 0.5);
}

.gradient-text-white-simple {
    background: linear-gradient(90deg, #ffffff 0%, #758bad 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Inline Style Attributes - Common Patterns */
.accordion-content-hidden {
    display: none;
}

.teklif-step-hidden {
    display: none;
}

.product-option-selected {
    border: 2px solid #008fff;
    background: #003993;
    box-shadow: 0 0 76.8px rgba(0, 99, 255, 0.65);
}

.step-circle-number {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4),
        0 0 50px rgba(255, 255, 255, 0.2);
}

.teklif-gif-blend {
    mix-blend-mode: screen;
}

/* Neuretiyoruz.php - Hero Background */
.neuretiyoruz-hero-bg {
    background-image: linear-gradient(
            rgba(25, 55, 103, 0.78),
            rgba(25, 55, 103, 0.78)
        ),
        url("img/uretimbg.gif");
}

.text-shadow-white {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Form stilleri (teklif-1 ile uyumlu) */
.form-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 0;
    width: 100%;
    outline: none;
    transition: border-color 0.3s;
    position: relative;
    font-size: 14px;
}
.form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}
.form-input:focus {
    border-bottom-color: rgba(255, 255, 255, 0.8);
}
.form-input.error {
    border-bottom-color: #e53935;
}
.input-wrapper {
    position: relative;
}
.input-wrapper::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #e53935;
    z-index: 1;
}

/* Yavaş yukarı-aşağı ok animasyonu */
@keyframes floatY {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}
.animate-float-slow {
    animation: floatY 2.5s ease-in-out infinite;
}

/* Sol içerik alanı arka plan gif */
.hero-left {
    position: relative;
    overflow: hidden;
}
.hero-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("img/corporate.gif") center / cover no-repeat;

    z-index: 0;
    pointer-events: none;
}
.hero-left > * {
    position: relative;
    z-index: 1;
}

