/* Genel Stil ve Değişkenler */
:root {
    /* Renk Paleti */
    --primary-brand: #283868;   /* Logonun Lacivert Rengi */
    --secondary-brand: #F37021; /* Logonun Turuncu Rengi */
    --text-primary: #2c3e50;    /* Ana metin rengi (daha yumuşak bir siyah) */
    --text-light: #ffffff;      /* Açık renkli metin (koyu zeminler için) */
    --bg-light: #f8f9fa;        /* Çok açık gri arka plan */
    --bg-white: #ffffff;        /* Beyaz arka plan */
    --shadow-color: rgba(0, 0, 0, 0.1);

    --header-height: 80px;
    --top-bar-height: 40px;
    --link-ticker-height: 45px;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    color: var(--text-primary);
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    min-height: 99vh;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header ve Navigasyon Stilleri */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    padding: 0 5%;
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px var(--shadow-color);
    position: fixed;
    top: calc(var(--top-bar-height) + var(--link-ticker-height));
    left: 0;
    width: 90%;
    z-index: 1000;
}

.site-logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-brand);
}

.site-logo span {
    color: var(--secondary-brand);
}

.site-logo img {
    max-height: 65px; /* Logonun maksimum yüksekliği */
    display: block;   /* Resmin altındaki boşluğu kaldırır */
}


.main-nav {
    display: flex;
}

.main-nav > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.main-nav li {
    position: relative; /* Alt menü konumlandırması için gerekli */
    margin-left: 30px;
}

.main-nav a i {
    font-size: 0.7rem;
    margin-left: 5px;
}

.main-nav a.active-page,
.main-nav a.active-page i {
    color: var(--primary-brand);
}

.main-nav a {
    font-weight: 600;
    padding: 10px 5px;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--secondary-brand);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-brand);
}

.main-nav a:hover::after,
.main-nav a.active-page::after {
    width: 100%;
}

/* Dropdown Menü Stilleri */
.sub-menu {
    list-style: none;
    padding: 10px 0;
    margin: 0;
    display: block; /* Alt menünün dikey olarak sıralanmasını sağlar */
    position: absolute;
    top: 145%;
    left: -15px;
    background-color: var(--bg-white);
    min-width: 220px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.main-nav li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* İkinci ve daha derin seviye alt menülerin yana açılmasını sağlayan stil */
.sub-menu .sub-menu {
    top: -10px; /* Üstten hizalamayı ayarlar */
    left: 100%; /* Ana menü öğesinin sağında açılmasını sağlar */
    border-radius: 8px; /* Tüm köşeleri yuvarlatır */
}

/* Yana açılan menü için hover animasyonunu düzelt */
.sub-menu li:hover > .sub-menu {
    transform: translateY(0);
}

.sub-menu li {
    margin: 0;
    width: 100%;
}

.sub-menu a {
    display:inline-block; /* inline-block dersek, Linkin sadece metin kadar yer kaplamasını sağlar */
    padding: 12px 20px;
    position: relative; /* Alt çizgi için gerekli */
    font-weight: 500;
    color: var(--text-primary);
    transition: background-color 0.3s ease, color 0.3s ease, padding-left 0.3s ease;
}

.sub-menu a:hover {
    color: var(--primary-brand);
}

.sub-menu a::after {
    /* Alt menü çizgisi */
    content: '';
    position: absolute;
    bottom: 8px; /* Çizginin metne olan mesafesi */
    left: 0;
    width: 100%; /* Linkin (yani metnin) genişliği kadar */
    height: 2px;
    background-color: var(--secondary-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-out;
}

.sub-menu a:hover::after {
    transform: scaleX(1);
}

/* Hamburger Menü İkonu */
.hamburger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger-menu .bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-brand);
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}
@media (max-width: 1115px) {
    .site-logo img{
        max-height: 45px;
    }
}

/* Mobil (Responsive) Stiller */
@media (max-width: 992px) {
    .site-logo img{
    max-height: 59px;
    }
    .main-nav {
        display: block; /* Animasyon için display:none yerine block kullanıyoruz */
        position: fixed; /* Sayfa kaydırılsa bile sabit kalması için */
        top: 0; /* Ekranın en üstünden başlasın */
        top: calc(var(--top-bar-height) + var(--link-ticker-height) + var(--header-height)); /* Header'ın altından başlasın */
        left: 0;
        width: 100%; /* Ekranın %75'ini kaplasın */
        height: 100vh; /* Ekranın tüm yüksekliğini kaplasın */
        height: calc(100vh - (var(--top-bar-height) + var(--link-ticker-height) + var(--header-height))); /* Kalan tüm yüksekliği kaplasın */
        background-color: var(--bg-white);
        transform: translateX(-100%); /* Başlangıçta ekranın solunda tamamen gizli */
        transition: transform 0.4s ease-in-out; /* Akıcı açılma/kapanma animasyonu */
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        /* Menü içeriği ekrandan uzunsa kaydırma çubuğu ekle */
        overflow-y: auto;
        max-height: calc(100vh - (var(--header-height) + var(--top-bar-height) + var(--link-ticker-height)));
    }

    .sub-menu {
        /* Mobilde hover ile açılmayı engelle ve normal akışa dahil et */
        position: relative; /* Mutlak konumlandırmayı iptal et */
        display: block; /* Her zaman görünür olmalı, animasyon için */
        max-width: 100%;
        padding: 0;
        left: 0; 
        padding-left: 45px; /* İçeri kaydırma */
        box-shadow: none;
        border-radius: 0;
        background-color: var(--bg-light); /* İç içe olduğunu belli etmek için hafif farklı renk */
        transform: none;
        max-height: 0; /* Başlangıçta kapalı */
        overflow: hidden; /* max-height: 0 iken içeriği gizle */
        transition: max-height 0.4s ease-in-out; /* Sadece max-height için akıcı geçiş */
        opacity: 1; /* Mobil menüde her zaman görünür olmalı, max-height kontrol edecek */
        visibility: visible; /* Mobil menüde her zaman görünür olmalı, max-height kontrol edecek */
    }

    /* Mobilde, iç içe geçmiş alt menülerin yana değil, altına açılmasını sağla */
    .sub-menu .sub-menu {
        position: relative;
        left: 0;
        padding-left: 45px; /* İçeri kaydırma */
        top: 0;
        background-color: var(--bg-white); /* İkinci seviye menüyü daha açık renk yap */
    }

    .main-nav.active {
        transform: translateX(0); /* 'active' class'ı eklendiğinde menüyü görünür yap */
    }

    .main-nav > ul {
        flex-direction: column;
        width: 100%;
    }

    .main-nav li {
        margin: 0;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #f0f0f0;
    }

    .main-nav li:last-child {
        border-bottom: none;
    }

    .main-nav > ul > li > a {
        display: block;
        padding: 20px;
        padding-left: 25px;
        color: var(--text-primary); /* Mobil menü link rengini ayarla */
    }

    /* Mobil menüdeki ok ikonlarına animasyon ekle */
    .main-nav li.has-dropdown > a > i {
        transition: transform 0.3s ease-in-out;
    }

    /* 'open' class'ı olan menünün ok ikonunu 90 derece döndür */
    .main-nav li.has-dropdown.open > a > i {
        transform: rotate(90deg);
    }


    .main-nav a:hover {
        background-color: var(--bg-light);
    }

    .main-nav a::after {
        display: none; /* Alttaki çizgiyi mobilde kaldır */
    }

    .hamburger-menu {
        display: flex;
    }

    /* Hamburger animasyonu */
    .hamburger-menu.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Mobil menü açıldığında arka planı karartmak için overlay */
body.mobile-menu-open {
    overflow: hidden; /* Mobil menü açıkken ana içeriğin kaymasını engelle */
}

/* Overlay'in başlangıç durumu (gizli) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Yarı saydam siyah */
    z-index: 999; /* Menünün altında (z-index: 1000), diğer içeriğin üstünde */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* Mobil menü açıkken overlay'i göster */
body.mobile-menu-open::before {
    opacity: 1;
    visibility: visible;
}

/* İçeriğin header'ın altında kalmasını sağla */
.site-content {
    padding-top: calc(var(--header-height) + var(--top-bar-height) + var(--link-ticker-height));
    flex-grow: 1; /* Footer'ı aşağı itmek için içeriği büyütür */
}

/* Footer Stilleri */
.site-footer {
    background-color: var(--text-primary);
    color: var(--bg-light);
    padding: 60px 5% 0;
    margin-top: 50px; /* Sayfa içeriği ile footer arasına boşluk */
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column.about p {
    color: #bdc3c7; /* Daha açık gri metin */
    line-height: 1.7;
    margin-top: 15px;
}

.footer-logo img {
    max-height: 65px;
    filter: brightness(0) invert(1); /* Logoyu beyaz yapar */
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--bg-white);
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-brand);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul a {
    color: #bdc3c7;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-column ul a:hover {
    color: var(--bg-white);
    padding-left: 5px;
}

.footer-column.contact ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #bdc3c7;
}

.footer-column.contact ul li i {
    margin-right: 15px;
    margin-top: 5px;
    color: var(--secondary-brand);
    width: 15px;
    text-align: center;
}

.footer-column.contact ul li a:hover {
    color: var(--bg-white);
    padding-left: 0; /* Diğer linklerdeki içe kayma efektini iptal et */
}


.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
    border-radius: 50%;
    margin-right: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--secondary-brand);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
    color: #bdc3c7;
}

/* Hero Section Stilleri */
.hero-slider {
    height: 55vh; /* Yüksekliği ekranın %55'i yap */
    position: relative;
}

.swiper-slide {
    display: flex;
    align-items: center; /* İçeriği dikeyde ortala */
    justify-content: center;
    padding-bottom: 0; /* Alt boşluğu sıfırla */
    text-align: center;
    color: var(--text-light);
}

.hero-slide-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 62, 80, 0.7); /* --text-primary renginin transparan hali */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 0 20px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;    
}
.hero-divider {
    width: 80px;
    height: 4px;
    background-color: var(--secondary-brand);
    margin: 30px auto;
    border-radius: 2px;
}



.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Genel Buton Stilleri */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--secondary-brand);
    color: var(--bg-white);
    border-color: var(--secondary-brand);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--secondary-brand);
    transform: translateY(-3px);
}

.btn i {
    margin-left: 8px;
}

/* Swiper Navigasyon ve Sayfalandırma Stilleri */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    background-color: rgba(0, 0, 0, 0.3); /* Yarı saydam siyah arka plan */
    width: 55px; /* Sabit genişlik */
    height: 55px; /* Sabit yükseklik */
    padding: 15px;
    border-radius: 50%;
    color: var(--bg-white);
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0; /* Başlangıçta gizle */
    transform: scale(1.5);
}

.hero-slider:hover .swiper-button-next,
.hero-slider:hover .swiper-button-prev {
    opacity: 1; /* Fare üzerine gelince göster */
    transform: scale(1);
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    transform: scale(1.3);
}

.hero-slider .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.7);
    width: 12px; height: 12px;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--secondary-brand);
}

/* Hero Slider İçerik Animasyonları */
.hero-content .hero-title,
.hero-content .hero-subtitle,
.hero-content .btn,
.hero-content .hero-divider {
    opacity: 0; /* Başlangıçta tüm elemanlar görünmez */
}

.hero-content .hero-title {
    transform: translateY(100%);
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1); /* İdeal Hız */
}

.hero-content .btn {
    transform: translateY(30px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out; /* İdeal Hız */
}

.hero-content .hero-subtitle {
    transition: opacity 1.5s ease-in; /* İdeal Hız */
}

.swiper-slide-active .hero-content .hero-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s; /* İdeal Gecikme */
}

.swiper-slide-active .hero-content .hero-subtitle {
    opacity: 1;
    transition-delay: 1.2s; /* İdeal Gecikme */
}

.swiper-slide-active .hero-content .hero-divider {
    opacity: 1;
    animation: stretch 1s cubic-bezier(0.23, 1, 0.32, 1) 0.8s forwards; /* İdeal Hız */
}

.swiper-slide-active .hero-content .btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.5s; /* İdeal Gecikme */
}

@keyframes stretch {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

/* CTA Section Stilleri (Teklif İste) */
.cta-section {
    padding: 100px 5%;
    background-color: var(--bg-light);
}

.cta-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.cta-image {
    flex-shrink: 0;
    width: 45%;
}

.cta-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.cta-content {
    flex-grow: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.cta-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-brand);
    border-color: var(--primary-brand);
}

.btn-secondary:hover {
    background-color: var(--primary-brand);
    color: var(--bg-white);
    transform: translateY(-3px);
}

/* CTA Mobil Uyumluluk */
@media (max-width: 992px) {
    .cta-container {
        flex-direction: column;
        padding: 30px;
        gap: 30px;
    }
    .cta-image {
        width: 100%;
    }
    .cta-title {
        font-size: 2rem;
    }
}

/* Slider içindeki ikincil buton için özel stil */
/* Hero alanları (slider, ürün detayı vb.) içindeki ikincil buton için özel stil */
.hero-content .btn-secondary,
.product-detail-hero-content .btn-secondary {
    color: var(--bg-white); /* Metin rengini beyaz yap */
    border-color: var(--bg-white); /* Kenarlık rengini beyaz yap */
}

.hero-content .btn-secondary:hover {
    background-color: var(--bg-white); /* Üzerine gelince arka planı beyaz yap */
    color: var(--text-primary); /* Üzerine gelince metin rengini koyu yap */
}

/* Genel Bölüm Başlığı Stilleri */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

/* Neden Biz Bölümü Stilleri */
.why-us-section {
    padding: 100px 5%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Mobil cihazlarda içeriğin kenarlara yapışmasını engeller */
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-us-item {
    background-color: var(--bg-white);
    overflow: hidden;
}

.why-us-item-image {
    height: 220px;
}

.why-us-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.why-us-item:hover .why-us-item-image img {
    transform: scale(1.05);
}

.why-us-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.why-us-item-content {
    padding: 30px;
    text-align: center;
}

.item-icon {
    font-size: 2.5rem;
    color: var(--secondary-brand);
    margin-bottom: 20px;
    display: inline-block; /* İkonun ortalanması için */
    background-color: var(--bg-light);
    width: 80px;
    line-height: 80px;
    border-radius: 50%;
}

.item-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.item-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
}

/* Neden Biz Mobil Uyumluluk */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    .why-us-section {
        padding: 80px 5%;
    }
    .section-header {
        margin-bottom: 40px;
    }
}

/* Referanslar Bölümü Stilleri */
.references-section {
    padding: 100px 5%;
    background-color: var(--bg-white);
}

.logo-slider .swiper-wrapper {
    /* Sürekli kayma animasyonu için zamanlama fonksiyonu */
    transition-timing-function: linear !important;
    -webkit-transition-timing-function: linear !important;
}

.logo-slider .swiper-slide {
    width: auto; /* Logoların kendi genişliğine sahip olmasını sağlar */
    align-items: center;
}

.logo-slider img {
    max-height: 75px; /* Logo yüksekliklerini sınırlar */
    width: auto;
    max-width: 150px; /* Logo genişliklerini sınırlar */
    filter: grayscale(0%);
    opacity: 0.8;
    transition: filter 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}

.logo-slider .swiper-slide:hover img {
    filter: none;
    opacity: 1;
    transform: scale(1.1);
}

/* Kayan Bant (Ticker) Stilleri */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background-color: var(--primary-brand);
    color: var(--bg-white);
    padding: 20px 0;
    white-space: nowrap;
}

.ticker {
    display: inline-block;
    animation: ticker-scroll 80s linear infinite;
}

.ticker-wrap:hover .ticker {
    animation-play-state: paused; /* Fare üzerine gelince animasyonu durdur */
}

.ticker span {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0 3rem;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Top Bar Stilleri */
.top-bar {
    background-color: var(--primary-brand);
    color: var(--bg-light);
    height: var(--top-bar-height);
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 5%;
}

.top-contact-info {
    display: flex;
    gap: 19px;
}

.top-bar-separator {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    height: 15px;
    align-self: center;
}

.top-contact-info span {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.top-contact-info i {
    margin-right: 5px;
    color: var(--secondary-brand);
}

.top-social {
    white-space: nowrap;
}

.top-social a {
    color: var(--bg-light);
    margin-left: 20px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.top-social a:hover {
    color: var(--secondary-brand);
    transform: scale(1.2);
}

@media (max-width: 992px) {
    .top-social a {
    margin-left: 15px;
    }
}

/* Linkli Kayan Bant Stilleri */
.link-ticker-wrap {
    background-color: var(--bg-light);
    border-bottom: 1px solid #e9ecef;
    position: fixed;
    top: var(--top-bar-height);
    left: 0;
    width: 100%;
    z-index: 1001;
    height: var(--link-ticker-height);
    display: flex;
    align-items: center;
}


.link-ticker-wrap:hover .ticker {
    animation-play-state: paused; /* Fare üzerine gelince animasyonu durdur */
}


.ticker-viewport {
    overflow: hidden;
    white-space: nowrap;
    flex-grow: 1;
}

.ticker {
    display: inline-block;
    animation: ticker-scroll 275s linear infinite;

}

.ticker-btn {
    display: inline-block;
    padding: 6px 15px;
    margin: 0 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    background-color: var(--bg-white);
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.ticker-btn:hover {
    background-color: var(--secondary-brand);
    color: var(--bg-white);
    border-color: var(--secondary-brand);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.ticker-nav-btn {
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0 15px;
    font-size: 1rem;
    opacity: 0.5;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.ticker-nav-btn:hover {
    opacity: 1;
    color: var(--secondary-brand);
}

/* Süreç Bölümü Stilleri */
.process-section {
    padding: 100px 5%;
    background-color: var(--bg-white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step {
    text-align: center;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: transform 0.4s ease;
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.process-step:hover .step-bg {
    transform: scale(1.1);
}

.step-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(40, 56, 104, 0.8); /* --primary-brand renginin transparan hali */
    transition: background-color 0.4s ease;
}

.process-step:hover .step-overlay {
    background-color: rgba(40, 56, 104, 0.6);
}

.step-content {
    position: relative;
    z-index: 3;
    color: var(--bg-white);
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--secondary-brand);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--bg-white);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step-text {
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition-delay: 0.1s;
}

.process-step:hover .step-text {
    opacity: 1;
    transform: translateY(0);
}

/* Müşteri Yorumları Bölümü Stilleri */
.testimonials-section {
    padding: 100px 5%;
    background-color: var(--bg-light);
}

.testimonials-slider-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.testimonials-slider .swiper-slide {
    padding-bottom: 50px; /* Sayfalandırma için boşluk */
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* Kartın, slide'ın tüm yüksekliğini kaplamasını sağla */
}

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
    padding-left: 35px;
}

.testimonial-text::before {
    content: '\f10d'; /* Font Awesome tırnak ikonu */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    color: var(--secondary-brand);
    opacity: 0.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.author-name {
    font-weight: 600;
    display: block;
}

.author-title {
    font-size: 0.9rem;
    color: #777;
}

.testimonials-slider-container .swiper-button-next,
.testimonials-slider-container .swiper-button-prev {
    color: var(--primary-brand);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.testimonials-slider-container:hover .swiper-button-next,
.testimonials-slider-container:hover .swiper-button-prev {
    opacity: 1;
}

.testimonials-slider-container .swiper-button-next::after,
.testimonials-slider-container .swiper-button-prev::after {
    font-size: 1.5rem;
    font-weight: bold;
}

.testimonials-slider-container .swiper-pagination-bullet {
    background: var(--primary-brand);
    opacity: 0.4;
}

.testimonials-slider-container .swiper-pagination-bullet-active {
    background: var(--secondary-brand);
    opacity: 1;
}

@media (max-width: 992px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .process-timeline {
        grid-template-columns: 1fr;
    }
}

/* Stoktan Teslim Bölümü Stilleri */
.stock-delivery-section {
    padding: 100px 5%;
    background-color: var(--bg-white);
}

.stock-delivery-tabs {
    position: relative;
}

.tab-nav {
    display: flex;
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: 5px;
    margin-bottom: 20px;
}

.tab-link {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #6c757d;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.tab-link.active {
    background-color: var(--bg-white);
    color: var(--primary-brand);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.tab-content .tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content .tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.stock-delivery-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 60px;
}

.stock-delivery-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.stock-delivery-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.stock-main-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.delivery-highlights {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.highlight-item {
    flex: 1;
    background-color: var(--bg-light);
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-brand);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.highlight-item i {
    font-size: 2rem;
    color: var(--secondary-brand);
    margin-bottom: 15px;
}

.highlight-item h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: var(--primary-brand);
}

.highlight-item p {
    margin: 0;
    font-weight: 600;
}

.stock-advantage-text {
    margin-bottom: 40px;
    line-height: 1.6;
    color: #6c757d;
}

@media (max-width: 992px) {
    .stock-delivery-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .stock-delivery-content .section-title {
        text-align: center;
    }
}

/* Teknik Şartname Akordeon Stilleri */
.tech-specs-section {
    padding: 100px 5%;
    background-color: var(--bg-light);
}

.tech-accordion {
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.tech-accordion-item {
    background-color: var(--bg-white);
    border-bottom: 1px solid #e0e0e0;
}

.tech-accordion-item:last-child {
    border-bottom: none;
}

.tech-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tech-accordion-header:hover {
    background-color: #fcfcfc;
}

.tech-accordion-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-brand);
}

.tech-accordion-header i {
    font-size: 1.1rem;
    color: var(--secondary-brand);
    transition: transform 0.4s ease;
}

.tech-accordion-item.active .tech-accordion-header i {
    transform: rotate(45deg);
}

.tech-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background-color: #fafafa;
}

.tech-accordion-item.active .tech-accordion-body {
    padding: 30px 25px;
}

.tech-specs-row {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.tech-specs-col-img {
    flex: 0 0 30%;
}

.tech-specs-col-img img {
    width: 100%;
    border-radius: 8px;
}

.tech-specs-col-text {
    flex: 1;
}

.tech-specs-col-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-specs-col-text > ul > li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.tech-specs-col-text > ul > li:last-child {
    border-bottom: none;
}

.tech-specs-col-text ul ul {
    padding-left: 20px;
    margin-top: 5px;
    list-style-type: disc;
}

@media (max-width: 768px) {
    .tech-specs-row {
        flex-direction: column;
    }
}

.samples-slider-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.samples-slider {
    padding-bottom: 50px; /* Sayfalandırma için altta boşluk bırak */
}

.sample-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 350px; /* Kartlar için sabit bir yükseklik belirle */
    display: flex; /* İçeriği ortalamak için */
    align-items: center; /* İçeriği dikeyde ortala */
    justify-content: center; /* İçeriği yatayda ortala */
}

.sample-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover; /* Resmin kalitesini bozmadan kartı doldurmasını sağla */
}

.sample-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transform: scale(1.05);
    z-index: 10; /* Üzerine gelinen kartın diğerlerinin önüne geçmesini sağla */
}


.samples-slider .swiper-pagination-bullet {
    background: var(--primary-brand);
    opacity: 0.5;
}

.samples-slider .swiper-pagination-bullet-active {
    background: var(--secondary-brand);
    opacity: 1;
}


/* ===============================================
   Stoktan Teslim Tanıtım Alanı Stilleri
   =============================================== */
.stoktan-detail-hero-section {
    position: relative;
    height: 83vh; /* Yüksekliği ekranın %50'si yapalım */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
}

.stoktan-detail-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.stoktan-detail-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmin en-boy oranını koruyarak alanı kaplamasını sağlar */
    object-position: center;
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(40, 56, 104, 0.5); /* --primary-brand renginin yarı saydam hali */
}

.promo-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.promo-title {
    font-size: 4rem; /* Büyük başlık */
    font-weight: 700;
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.2;
    margin-bottom: 40px;
}

.promo-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Mobil için butonların alt alta gelmesini sağlar */
    font-family: 'Times New Roman', Times, serif;

}

/* Stoktan Teslim alanındaki ikincil buton için özel stil */
.promo-content .btn-secondary {
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.promo-content .btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--primary-brand);
}

/* Mobil Cihazlar İçin Ayarlama */
@media (max-width: 768px) {
    .promo-title {
        font-size: 2.8rem;
    }
}

.sample-card-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(40, 56, 104, 0.8);
    color: var(--bg-white);
    padding: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Temel Avantajlar Bölümü Stilleri */
.key-features-section {
    background-color: var(--bg-white);
    padding: 50px 5%;
    border-bottom: 1px solid #e9ecef;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.feature-item:hover {
    background-color: var(--bg-light);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--secondary-brand);
    flex-shrink: 0;
    transition: transform 0.3s ease-in-out; /* Animasyon için geçiş efekti eklendi */
}

.feature-item:hover i {
    transform: scale(1.15) rotate(-10deg); /* İkonu büyüt ve hafifçe döndür */
}

.feature-item h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    color: var(--primary-brand);
}

.feature-item p {
    margin: 0;
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .key-features-section {
        padding: 40px 5%;
    }
}

/* Yukarı Çık Butonu Stilleri */
.scroll-to-top {
    position: fixed;
    bottom: 100px; /* WhatsApp butonunun üzerine konumlandır */
    right: 25px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-brand);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1001; /* WhatsApp widget'ından daha yüksek bir z-index */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* WhatsApp açıldığında yukarı çık butonunu gizlemek için */
.scroll-to-top.hidden-by-whatsapp {
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--primary-brand);
    transform: translateY(-5px);
}

/* Gelişmiş WhatsApp Butonu Stilleri */
.whatsapp-widget {
    position: fixed;
    bottom: 25px;
    right: 25px; /* Soldan sağa taşı */
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* İçeriği sağa hizala */
    pointer-events: none; /* Tıklama olaylarının içindeki görünür elemanlara geçmesini sağla */
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    pointer-events: auto; /* Butonun her zaman tıklanabilir olmasını sağla */
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-popup {
    width: 320px;
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin-bottom: 15px;
    overflow: hidden;
    transform: scale(0.95) translateY(10px);
    opacity: 0;
    visibility: hidden;
    transform-origin: bottom right; /* Animasyon başlangıç noktasını sağ alt yap */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: auto; /* Popup açıldığında içeriğinin tıklanabilir olmasını sağla */
}

.whatsapp-popup.show {
    transform: scale(1) translateY(0);
    opacity: 1;
    visibility: visible;
}

.whatsapp-popup-header {
    background-color: var(--primary-brand);
    color: var(--bg-white);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.whatsapp-popup-header .header-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-popup-header .header-logo img {
    max-width: 80%;
    max-height: 80%;
}

.whatsapp-popup-header .header-text h4 {
    margin: 0;
    font-size: 1.1rem;
}

.whatsapp-popup-header .header-text p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.8;
}

.whatsapp-close {
    position: absolute;
    top: 5px;
    right: 10px;
    background: none;
    border: none;
    color: var(--bg-white);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.whatsapp-close:hover {
    opacity: 1;
}

.whatsapp-popup-body {
    padding: 20px;
    background-color: #f7f7f7;
    font-size: 0.95rem;
    line-height: 1.6;
}

.whatsapp-popup-footer {
    padding: 20px;
    text-align: center;
}

.btn-whatsapp-chat {
    display: inline-block;
    background-color: #25D366;
    color: var(--bg-white);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-whatsapp-chat:hover {
    background-color: #128C7E;
}

.btn-whatsapp-chat i {
    margin-right: 8px;
}

@media (max-width: 400px) {
    .whatsapp-widget {
        left: 15px;
        bottom: 15px;
        right: 15px;
        align-items: stretch;
    }
    .whatsapp-popup {
        width: 100%;
    }
}

/* İletişim Sayfası Stilleri */
.contact-page-section {
    padding: 0 5%;
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: flex-start;
    margin-top: 40px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.contact-card-icon {
    font-size: 2.5rem;
    color: var(--secondary-brand);
    margin-bottom: 15px;
}

.contact-card-title {
    font-size: 1.3rem;
    color: var(--primary-brand);
    margin: 0 0 10px 0;
}

.contact-card-text {
    color: #6c757d;
    margin: 0 0 20px 0;
    font-size: 1rem;
    min-height: 40px; /* Kartların aynı hizada durmasına yardımcı olur */
}

.contact-card-link {
    display: inline-block;
    font-weight: 600;
    color: var(--secondary-brand);
    position: relative;
}

.contact-card-link::after {
    content: ' →';
}

.contact-card-link:hover {
    color: var(--secondary-brand);
}

.contact-map iframe {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-map {
        order: -1; /* Haritayı mobilde üste al */
    }
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
}

/* İletişim Formu Stilleri */
.contact-form-container {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.contact-form {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form .form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form label {
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background-color: var(--bg-white);
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-brand);
    box-shadow: 0 0 0 3px rgba(243, 112, 33, 0.2);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
}

/* Dosya Yükleme Alanı Stilleri */
.contact-form input[type="file"] {
    display: none; /* Varsayılan inputu gizle */
}

.file-upload-label {
    display: inline-block;
    padding: 12px 20px;
    background-color: #e9ecef;
    border: 1px dashed #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.file-upload-label:hover {
    background-color: #dfe4e8;
    border-color: var(--secondary-brand);
}

.file-names-display {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #6c757d;
}

.file-size-info {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #888;
}

@media (max-width: 768px) {
    .contact-form .form-grid {
        grid-template-columns: 1fr;
    }

    /* Mobilde select kutusunun düzgün çalışması için */
    .contact-form select {
        -webkit-appearance: menulist;
        appearance: menulist;
    }
}

/* SSS Bölümü Stilleri */
.faq-section {
    padding: 100px 5%;
    background-color: var(--bg-white);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-accordion-item {
    background-color: var(--bg-white);
    border-bottom: 1px solid #e9ecef;
}

.faq-accordion-item:first-child {
    border-top: 1px solid #e9ecef;
}

.faq-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-accordion-header:hover {
    background-color: var(--bg-light);
}

.faq-accordion-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-accordion-header i {
    font-size: 0.9rem;
    color: var(--secondary-brand);
    transition: transform 0.4s ease;
    transform: rotate(0deg); /* Başlangıç pozisyonu */
}

.faq-accordion-item.active .faq-accordion-header i {
    transform: rotate(90deg); /* Açıkken 90 derece dönsün */
}

.faq-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding: 0 20px;
}

.faq-accordion-body p {
    margin: 0;
    padding-bottom: 20px;
    line-height: 1.7;
    color: #6c757d;
}


/* ===============================================
   Teknik Şartname Sayfası Stilleri (Yeni Başlangıç)
   =============================================== */
.teknik-spec-document-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 2px solid var(--primary-brand);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.teknik-company-details p {
    margin: 0 0 5px 0;
    color: #6c757d;
    padding: 15px 0 0 15px;
}
.teknik-company-details p strong {
    color: var(--text-primary);
}

.teknik-company-logo img {
    max-height: 49px;
    margin: 15px 15px 0 0;
}

.teknik-client-info-box {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 40px;
}

.teknik-client-info-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    border-bottom: 1px solid #e0e0e0;
}
.teknik-client-info-row:last-child {
    border-bottom: none;
}
.teknik-client-info-row span:first-child {
    font-weight: 600;
}
.teknik-editable-field {
    min-width: 200px; /* Alanın tıklanabilir olması için minimum genişlik */
    display: inline-block;
    border-bottom: 1px dashed #ccc; /* Düzenlenebilir olduğunu belirten kesik çizgi */
    padding: 0 5px;
    text-align: right;
    transition: border-color 0.3s ease;
}
.teknik-editable-field:focus {
    outline: none;
    border-bottom: 1px solid var(--secondary-brand); /* Odaklanıldığında çizgi rengini değiştir */
}
/* Placeholder metni için */
.teknik-editable-field:empty::before {
    content: 'Bilgiyi buraya girin...';
    color: #aaa;
    font-style: italic;
    font-weight: 400;
}

.teknik-spec-title {
    color: var(--primary-brand) !important; /* Başlık rengini koru */
    font-size: 1.8rem !important; /* Başlık fontunu biraz küçült */
    margin-bottom: 15px !important;
    page-break-before: always; /* Bu başlıktan önce yeni bir sayfa başlat */
    text-align: center;
}

.teknik-spec-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ccc;
}

.teknik-spec-table th, .teknik-spec-table td {
    border: 1px solid #ccc;
    padding: 15px;
    vertical-align: middle;
}

.teknik-spec-table thead th {
    background-color: var(--bg-light);
    font-weight: 700;
    text-align: center;
}

.teknik-spec-table .visual-col { width: 15%; }
.teknik-spec-table .no-col { width: 5%; }
.teknik-spec-table .quantity-col { width: 15%; }

.teknik-spec-table .teknik-no-cell {
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.teknik-spec-table td ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
}
.teknik-spec-table td ul ul {
    margin-top: 5px;
}

.teknik-spec-table img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.page-section .print-actions {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.teknik-imalatlar-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.teknik-imalatlar-section .teknik-spec-title {
    margin-bottom: 30px;
}

.teknik-imalatlar-container {
    display: grid !important; /* Yazdırmada da yan yana olmalı */
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
    align-items: start;
}

.teknik-imalat-item {
    display: flex;
    flex-direction: column; /* Default to column for better readability of title above image */
    align-items: center;
    gap: 15px;
    margin-bottom: 0; /* Handled by container gap */
}

.teknik-imalat-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--text-primary);
    text-align: center; /* Center the title above the image */
}

.teknik-imalat-images {
    display: block; /* Each image is a block */
    width: 100%; /* Take full width of its container */
}

.teknik-imalat-images img {
    width: 100%;
    height: auto;
    max-width: 300px; /* Limit max width for larger images */
    display: block;
    margin: 0 auto; /* Center the image */
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Mobil uyumluluk için */
@media (max-width: 768px) {
.teknik-imalatlar-container {
        grid-template-columns: 1fr; /* Mobil'de alt alta sırala */
        gap: 20px;
    }
.teknik-imalat-item {
        text-align: center;
    }
.teknik-imalat-item h4 {
        margin-bottom: 10px;
    }
.teknik-imalat-images img {
        max-width: 100%;
    }
}

.page-section .print-actions .btn {
    margin: 0 10px;
}








/* Yazdırma Stilleri */
@media print {
    body {
        background-color: #fff !important; /* Arka planı beyaz yap */
        padding: 20mm !important; /* İçeriğe kenar boşluğu ver */
        margin: 0 !important; /* Body'nin kendi marginlerini sıfırla */
        color: #000 !important; /* Tüm metin rengini siyah yap */
        -webkit-print-color-adjust: exact !important; /* Arka plan renklerini ve resimleri yazdırmaya zorla */
        print-color-adjust: exact !important;
        font-size: 10pt !important; /* Yazdırma için genel font boyutunu ayarla */
        line-height: 1.5 !important; /* Satır yüksekliğini ayarla */
    }

    /* Çıktıda görünmemesi gereken elemanları gizle */
    .site-header, .top-bar, .link-ticker-wrap, .site-footer, .print-actions, .whatsapp-widget, .scroll-to-top {
        display: none !important;
    }

    /* Ana içerik alanının üst boşluğunu sıfırla */
    .site-content {
        padding-top: 0 !important;
        margin-top: 0 !important; /* Ekstra margin olmaması için */
    }

    /* İçerik alanının gölge ve kenarlıklarını kaldır, padding'i sıfırla */
    .content-area {
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        background-color: #fff !important; /* İçerik alanının arka planını beyaz yap */
        width: 100% !important; /* Genişliği tam yap */
        max-width: none !important; /* Max genişlik kısıtlamasını kaldır */
    }

    /* Şirket bilgileri başlığı */
    .spec-document-header {
        border-bottom: 1px solid #ccc !important; /* Alt çizgiyi daha belirgin yap */
        padding-bottom: 15px !important;
        margin-bottom: 20px !important;
    }
    .company-details p, .company-details p strong {
        color: #000 !important;
        font-size: 9pt !important; /* Daha küçük font */
    }
    .company-logo img {
        max-height: 30px !important; /* Logoyu küçült */
        width: auto !important;
    }

    /* Müşteri bilgi kutusu */
    .client-info-box {
        border: 1px solid #ccc !important;
        background-color: #fff !important;
        margin-bottom: 30px !important;
        font-size: 9pt !important;
    }
    .client-info-row {
        border-bottom: 1px solid #eee !important;
        color: #000 !important;
        padding: 8px 15px !important; /* Padding'i azalt */
    }
    .client-info-row span {
        color: #000 !important;
    }
    .editable-field {
        border-bottom: none !important; /* Yazdırma sırasında çizgiyi kaldır */
        text-align: left;
        padding-left: 5px;
    }

    /* Başlıklar */
    .spec-title {
        color: var(--primary-brand) !important; /* Başlık rengini koru */
        font-size: 1.3rem !important; /* Başlık fontunu biraz küçült */
        margin-bottom: 15px !important;
        page-break-before: always; /* Bu başlıktan önce yeni bir sayfa başlat */
    }

    /* Tablo stilleri */
    .spec-table {
        border: 1px solid #000 !important; /* Tablo kenarlığını siyah yap */
        font-size: 9pt !important; /* Tablo metinlerini küçült */
    }
    .spec-table th, .spec-table td {
        border: 1px solid #000 !important; /* Hücre kenarlıklarını siyah yap */
        color: #000 !important;
        background-color: #fff !important; /* Hücre arka planını beyaz yap */
        padding: 8px !important; /* Tablo hücre padding'ini azalt */
    }
    .spec-table thead th {
        background-color: #f0f0f0 !important;
        color: #000 !important;
    }
    .spec-table td ul, .spec-table td ul ul {
        color: #000 !important;
        padding-left: 15px !important; /* Liste padding'ini azalt */
        margin-top: 5px !important;
        margin-bottom: 5px !important;
    }
    .spec-table td ul li {
        margin-bottom: 3px !important;
    }

    /* Resimler */
    .spec-table img {
        max-width: 80px !important; /* Resimleri küçült */
        height: auto !important;
        border: 1px solid #eee !important;
        box-shadow: none !important;
    }

    /* Sayfa sonu kesmeleri */
    .spec-table tbody tr {
        page-break-inside: avoid;
    }

    .spec-card {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
    .tech-specs-page .section-title {
        font-size: 24pt;
    }

    @page {
        size: A4;
        margin: 0 !important; /* Tarayıcı başlık ve altlıklarını gizlemek için sayfa kenar boşluklarını sıfırla */
    }
}

/* Fiyat Faktörleri Bölümü Stilleri */
.pricing-factors-section {
    padding: 100px 5%;
    background-color: var(--bg-light);
}

.pricing-factors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.factor-card {
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.factor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.factor-image {
    height: 250px;
}

.factor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.factor-content {
    padding: 30px;
    position: relative;
}

.factor-icon {
    position: absolute;
    top: -30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--secondary-brand);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(243, 112, 33, 0.4);
}

.factor-content h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--primary-brand);
}

.factor-content p {
    line-height: 1.7;
    color: #6c757d;
    margin: 0;
}

.pricing-cta {
    text-align: center;
    margin-top: 80px;
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.pricing-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

@media (max-width: 992px) {
    .pricing-factors-grid {
        grid-template-columns: 1fr;
    }
}

/* Fiyat Dağılımı Bölümü Stilleri */
.price-breakdown-section {
    padding: 100px 5% 0; /* Alt boşluğu kaldırdık, çünkü sonraki bölümle birleşecek */
    background-color: var(--bg-white);
}

.price-breakdown-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 50px;
}

.price-breakdown-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.price-breakdown-content .price-range {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary-brand);
    margin-bottom: 15px;
    display: block;
}

.price-breakdown-content > p {
    line-height: 1.7;
    color: #6c757d;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .price-breakdown-grid {
        grid-template-columns: 1fr;
    }
    .price-breakdown-image {
        order: -1; /* Resmi mobilde üste al */
        margin-bottom: 40px;
    }
}

/* Maliyet Hesaplama Aracı Stilleri */
.cost-calculator {
    background-color: var(--bg-white);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 40px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.calculator-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.cost-calculator .form-group {
    display: flex;
    flex-direction: column;
}

.cost-calculator label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #555;
}

.cost-calculator select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    background-color: var(--bg-white);
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    cursor: pointer;
}

.calculated-price-wrapper {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-brand) 0%, #3e528c 100%);
    color: var(--bg-white);
    padding: 25px;
    border-radius: 6px;
    margin-top: 15px;
}

.calculated-price-wrapper small {
    opacity: 0.8;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.calculated-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 5px;
    letter-spacing: -1px;
}

/* ===============================================
   Hakkımızda Sayfası Stilleri
   =============================================== */

/* Hakkımızda Hero Alanı */
.about-hero-section {
    position: relative;
    height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
}

.about-hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
}

.about-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(40, 56, 104, 0.7);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.about-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Vizyon & Misyon Bölümü */
.vision-mission-section {
    padding: 100px 5%;
    background-color: var(--bg-white);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.vision-mission-item {
    text-align: center;
    padding: 30px;
}

.vm-icon {
    font-size: 3rem;
    color: var(--secondary-brand);
    margin-bottom: 20px;
}

.vision-mission-item h3 {
    font-size: 1.8rem;
    color: var(--primary-brand);
    margin-bottom: 15px;
}

.vision-mission-item p {
    line-height: 1.7;
    color: #6c757d;
}

/* Ekibimiz Bölümü */
.team-section {
    padding: 100px 5%;
    background-color: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member-card {
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.team-member-photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.team-member-info {
    padding: 20px;
}

.team-member-name {
    font-size: 1.3rem;
    margin: 0 0 5px 0;
}

.team-member-title {
    color: var(--secondary-brand);
    font-weight: 600;
    margin: 0;
}

/* Değerlerimiz Bölümü */
.values-section {
    padding: 100px 5%;
    background-color: var(--bg-white);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
}

.value-icon {
    font-size: 2.2rem;
    color: var(--secondary-brand);
    margin-top: 5px;
}

.value-text h3 {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
    color: var(--primary-brand);
}

.value-text p {
    margin: 0;
    line-height: 1.6;
}

/* Hakkımızda Sayfası Mobil Uyumluluk */
@media (max-width: 992px) {
    .vision-mission-grid, .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    .vision-mission-section, .team-section, .values-section {
        padding: 80px 5%;
    }
}

/* ===============================================
   Referanslar Sayfası Stilleri
   =============================================== */

/* Referanslar Hero Alanı */
.references-hero-section {
    position: relative;
    height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
}

/* Projeler Bölümü */
.projects-section {
    padding: 100px 5%;
    background-color: var(--bg-white);
}

.project-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 25px;
    border: 1px solid #ddd;
    background-color: var(--bg-white);
    cursor: pointer;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: var(--secondary-brand);
    color: var(--bg-white);
    border-color: var(--secondary-brand);
}

.filter-btn.active {
    background-color: var(--primary-brand);
    color: var(--bg-white);
    border-color: var(--primary-brand);
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    /* gap: 40px; /* Isotope.js ile çakışabileceği için kaldırıldı */
}

.project-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    background-color: var(--bg-white);
    margin: 20px; /* Isotope.js ile uyumlu boşluk için */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
 .project-item {
    display: flex;
    flex-direction: column;
 }

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.project-item-image {
    position: relative;
    height: 250px;
    overflow: hidden; /* Resmin dışarı taşmasını engelle */
}

.project-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(40, 56, 104, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-item:hover .project-item-overlay {
    opacity: 1;
}

.project-zoom-btn {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-brand);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transform: scale(0.8);
    transition: transform 0.4s ease;
}

.project-item:hover .project-zoom-btn {
    transform: scale(1);
}

.project-item-info {
    padding: 20px;
    flex-grow: 1; /* Bu bölümün kalan boşluğu doldurmasını sağlar */
}

.project-item-info h4 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
}

.project-item-info p {
    margin: 0;
    color: #6c757d;
}

/* ===============================================
   Kategori Sayfası Hero Stilleri
   =============================================== */

.category-hero-section {
    position: relative;
    height: 15vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
}

.category-hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
}

.category-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(40, 56, 104, 0.7);
}

.category-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.category-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.category-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* ===============================================
   Ürün Kategori Sayfası Stilleri
   =============================================== */

.product-category-section {
    padding: 100px 5%;
    background-color: var(--bg-light);
}

.product-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.product-card {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: var(--text-primary);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.product-card-image {
    height: 250px;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-content {
    padding: 25px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Kart içeriğinin esneyerek footer'ı aşağı itmesini sağlar */
}

.product-card-title {
    font-size: 1.5rem;
    margin: 0 0 15px 0;
    color: var(--primary-brand);
}

.product-card-description {
    margin: 0 0 25px 0;
    line-height: 1.7;
    color: #6c757d;
    flex-grow: 1; /* Açıklama alanının esnemesini sağlar */
}

.product-card-link {
    font-weight: 600;
    color: var(--secondary-brand);
    align-self: flex-start; /* Linki sola hizalar */
}

/* ===============================================
   Ürün Detay Sayfası Hero Stilleri
   =============================================== */

.product-detail-hero-section {
    position: relative;
    height: 50vh; /* Yüksekliği ekranın %50'si yapalım */
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
}

.product-detail-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05); /* Hafif zoom efekti */
}

.product-detail-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(40, 56, 104, 0.5); /* --primary-brand renginin transparan hali */
}

.product-detail-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.product-detail-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.product-detail-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.product-detail-hero-content a:hover {
    color: var(--text-light);
}


/* ===============================================
   Detaylı Özellikler Grid Stilleri (Neden Esse Padel?)
   =============================================== */
.detailed-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.detailed-feature-item {
    text-align: center;
}

/* ===============================================
   Ürün Sayfası Karşılaştırma Kartları Stilleri
   =============================================== */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}
.comparison-card {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.comparison-card-header {
    padding: 20px;
    text-align: center;
}
.comparison-card-header h3 {
    margin-top: 15px;
    font-size: 1.5rem;
    color: var(--primary-brand);
}
.comparison-card-header h3 i {
    margin-right: 10px;
    color: var(--secondary-brand);
}
.comparison-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}
.comparison-card-body {
    padding: 0 25px 25px;
}
.comparison-card-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.comparison-card-body ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}
.comparison-card-body ul li i {
    margin-right: 10px;
    margin-top: 5px;
    font-size: 1.1rem;
}
.text-success {
    color: #28a745;
}
.text-danger {
    color: #dc3545;
}

@media (max-width: 992px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

/* ===============================================
   Hizmet Kartları Stilleri (Basketbol Sayfası vb.)
   =============================================== */
.service-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--bg-white);
    padding: 35px 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e9ecef;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(40, 56, 104, 0.1);
    border-color: var(--secondary-brand);
}

.service-card-icon {
    font-size: 3rem;
    color: var(--secondary-brand);
    margin-bottom: 20px;
    line-height: 1;
}

.service-card-title {
    font-size: 1.4rem;
    margin: 0 0 15px 0;
    color: var(--primary-brand);
}

.service-card-description {
    margin: 0 0 25px 0;
    line-height: 1.7;
    color: #6c757d;
    flex-grow: 1;
}

.service-card-link {
    font-weight: 600;
    color: var(--secondary-brand);
    align-self: center;
    transition: color 0.3s ease;
}

.service-card:hover .service-card-link {
    color: var(--primary-brand);
}

.service-card-link i {
    transition: transform 0.3s ease;
    display: inline-block;
}

.service-card:hover .service-card-link i {
    transform: translateX(5px);
}





/* ===============================================
   Basketbol Sahasi Kurulumu Stilleri (Basketbol Sayfası vb.)
   =============================================== */

.process-timeline-vertical {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
    padding-left: 45px;
}
.process-timeline-vertical::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 10px;
    bottom: 10px;
    width: 4px;
    background-color: #e9ecef;
    border-radius: 2px;
}
.process-step-vertical {
    position: relative;
    margin-bottom: 40px;
}
.process-step-icon {
    position: absolute;
    left: -25px; /* (45-50)/2 + 4/2 */
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--secondary-brand);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 4px solid var(--bg-light);
    z-index: 2;
}
.process-step-content {
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: border-color 0.3s ease;
}
.process-step-vertical:hover .process-step-content {
    border-color: var(--secondary-brand);
}
.process-step-title {
    font-size: 1.5rem;
    color: var(--primary-brand);
    margin: 0 0 10px 0;
}
.process-step-content p {
    margin: 0;
    line-height: 1.7;
    color: #6c757d;
}
@media (max-width: 768px) {
    .process-timeline-vertical {
        padding-left: 0;
        border-left: 4px solid #e9ecef;
    }
    .process-step-icon {
        left: -27px;
    }
    .process-step-content {
        margin-left: 40px;
    }
}







/* ===============================================
   Uygulama Katmanları Stilleri (Tartan Sayfası vb.)
   =============================================== */
.application-layers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.layer-card {
    background-color: var(--bg-light);
    border: 1px solid #e9ecef;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.layer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.09);
}

.layer-number {
    position: absolute;
    top: -10px;
    right: 15px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(40, 56, 104, 0.07); /* --primary-brand'in çok soluk hali */
    line-height: 1;
    z-index: 1;
}

.layer-icon {
    font-size: 2.5rem;
    color: var(--secondary-brand);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.layer-title {
    font-size: 1.4rem;
    margin: 0 0 10px 0;
    color: var(--primary-brand);
    position: relative;
    z-index: 2;
}

.layer-description {
    margin: 0;
    line-height: 1.6;
    color: #6c757d;
    position: relative;
    z-index: 2;
}

/* ===============================================
   Kullanım Alanları Listesi Stilleri
   =============================================== */
.usage-areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.usage-areas-list span {
    background-color: var(--bg-white);
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    border: 1px solid #e0e0e0;
    box-shadow: 0 3px 8px rgba(0,0,0,0.04);
}

.usage-areas-list span i {
    margin-right: 10px;
    color: var(--secondary-brand);
}

/* === Yeni Resim Galerisi Stilleri === */
.image-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1 / 1; /* Resimleri kare yapar */
}

.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item .gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 60, 113, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item .gallery-item-overlay i {
    color: #fff;
    font-size: 2.5rem;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: blur(2px);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

/* Fancybox Stilleri için ince ayarlar */
.fancybox__caption {
    text-align: center;
}

/* grecaptcha widgetimizi kapatiyoruz */
.grecaptcha-badge {
    visibility: hidden;
}

/* İzin Modu (Çerez Banner) Stilleri */
#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 380px;
    background-color: var(--bg-white);
    color: var(--text-primary);
    padding: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    font-family: inherit;
    font-size: 0.95rem;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(100%);
    visibility: hidden;
    transition: all 3.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

#cookie-banner p {
    margin: 0;
    margin-bottom: 20px;
    line-height: 1.6;
}

#cookie-banner a {
    color: var(--primary-brand);
    font-weight: 600;
    text-decoration: none;
}

#cookie-banner a:hover {
    text-decoration: underline;
}

#cookie-banner .cookie-buttons {
    display: flex;
    gap: 10px;
    width: 100%;
}

#cookie-banner button {
    background-color: var(--secondary-brand);
    color: white;
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 15px;
    font-weight: bold;
    transition: background-color 0.3s;
    width: 100%;
}

#cookie-banner button:hover {
    background-color: var(--primary-brand);
}

/* Mobil cihazlar için stil düzenlemesi */
@media (max-width: 768px) {
    #cookie-banner {
        flex-direction: column;
        padding: 20px;
        bottom: 0;
        left: 0;
        right: 0;
        max-width: 100%;
        border-radius: 0;
    }

    #cookie-banner p {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
