/* Renk Paleti Tanımlamaları */
:root {
    --primary-blue: #333d4e;        /* Koyu Mavi/Gri - Metinler için */
    --secondary-yellow: #f8b400;    /* Sarı - Vurgu renkleri */
    --light-gray: #f5f5f5;          /* Açık Gri - Arka planlar */
    --white: #ffffff;               /* Beyaz */
    --dark-text: #212529;           /* Koyu metin */
    --light-text: #6c757d;          /* Açık metin */
    --border-light: #e0e0e0;        /* Hafif kenarlık */
    --button-dark: #333d4e;         /* Koyu buton arka planı */
    --button-text-light: #ffffff;   /* Buton metin rengi */
    --hover-light: #e9ecef;         /* Hover durumu için açık */
}

/* Temel sıfırlama */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif; /* Modern bir font */
    background-color: var(--light-gray);
    color: var(--dark-text);
    line-height: 1.6;
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Konteynerler */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Main Menu */
header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

header .logo img {
    height: 50px;
    width: auto;
}

nav.main-menu ul {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

nav.main-menu ul li a {
    color: var(--dark-text);
    font-weight: 500;
    padding: 8px 0;
    transition: color 0.3s ease;
}

nav.main-menu ul li a:hover {
    color: var(--secondary-yellow);
}

/* Mobil Menü Toggle */
.mobile-menu-toggle {
    display: none; /* Masaüstünde gizli */
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-blue);
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--white);
    padding: 0 5%;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
    position: relative; /* İçerik için */
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2; /* Arka planın üzerinde kalması için */
}

.hero-content .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-yellow); /* Alt başlık sarı */
    font-weight: 500;
}

.hero-content .hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.1;
    color: var(--white);
}

/* Section Başlıkları ve Açıklamaları */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-text);
    font-weight: bold;
}
.section-title span {
    color: var(--secondary-yellow);
}
.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Bilgi ve Resim Bölümleri (Ortak Stil) */
.info-section {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 80px 40px; /* Kenarlardan iç boşluk */
    background-color: var(--white);
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    flex-wrap: wrap; /* Küçük ekranlarda alt alta */
}

.info-section.reverse {
    flex-direction: row-reverse;
}

.info-section .image-wrapper {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    min-height: 300px; /* Resim alanı için min yükseklik */
}
.info-section .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.info-section .image-overlay-card { /* 3. resimdeki sarı kart */
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--secondary-yellow);
    color: var(--white);
    padding: 20px 25px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.info-section .image-overlay-card i {
    font-size: 2.5rem;
}
.info-section .image-overlay-card p {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
}
.info-section .image-overlay-card span {
    font-size: 0.9rem;
    opacity: 0.9;
}


.info-section .content {
    flex: 1.5;
    padding: 20px;
}

.info-section .content .subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 10px;
    font-weight: 500;
}

.info-section .content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-text);
    line-height: 1.2;
    font-weight: bold;
}
.info-section .content h2 span {
    color: var(--secondary-yellow);
}

.info-section .content p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 25px;
}

.info-section .content ul {
    list-style: none;
    margin-bottom: 30px;
}

.info-section .content ul li {
    font-size: 1.1rem;
    color: var(--dark-text);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.info-section .content ul li i {
    color: var(--secondary-yellow);
    margin-right: 10px;
    font-size: 1.2rem;
}

.info-section .content .buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Butonlar */
.btn-primary {
    background-color: var(--button-dark);
    color: var(--button-text-light);
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    display: inline-block;
    cursor: pointer;
}
.btn-primary:hover {
    background-color: var(--secondary-yellow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--button-dark);
    border: 2px solid var(--button-dark);
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex; /* İkonla hizalama için */
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.btn-secondary:hover {
    background-color: var(--button-dark);
    color: var(--button-text-light);
}

.btn-secondary-arrow { /* Sadece sağ ok içeren butonlar için */
    color: var(--dark-text);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}
.btn-secondary-arrow:hover {
    color: var(--secondary-yellow);
}


/* Öne Çıkan Kategoriler Bölümü */
.featured-categories {
    padding: 80px 0;
    background-color: var(--white);
}

.featured-categories .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.featured-categories .section-header h2 {
    margin: 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.category-card .image-container {
    height: 250px;
    overflow: hidden;
}

.category-card .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card .content {
    padding: 25px;
}

.category-card h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.category-card p {
    font-size: 0.95rem;
    color: var(--light-text);
    margin-bottom: 15px;
}

.category-card .price {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--dark-text);
    margin-top: 10px;
    display: block;
}
.category-card .price small {
    font-size: 0.8rem;
    font-weight: normal;
    color: var(--light-text);
}

.category-card .btn-details {
    background-color: var(--button-dark);
    color: var(--button-text-light);
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    display: inline-block;
    margin-top: 20px;
}
.category-card .btn-details:hover {
    background-color: var(--secondary-yellow);
}

/* Projeler Bölümü */
.projects-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}
.project-container-grid { /* Kendi container yapısı */
    display: grid;
    grid-template-columns: 1fr 2.5fr; /* Sol metin, sağ kartlar */
    gap: 40px;
    align-items: center;
}

.projects-section .text-content {
    padding-right: 30px;
    text-align: right;
}
.projects-section .text-content .subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 10px;
}
.projects-section .text-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--dark-text);
    font-weight: bold;
    line-height: 1.2;
}
.projects-section .text-content h2 span {
     color: var(--secondary-yellow);
}

.projects-section .text-content p {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 25px;
}
.project-navigation {
    display: flex;
    justify-content: flex-end; /* Butonları sağa yasla */
    gap: 15px;
    margin-top: 30px;
}
.project-navigation .arrow-btn {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--dark-text);
    cursor: pointer;
    transition: all 0.3s ease;
}
.project-navigation .arrow-btn:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.project-cards-wrapper {
    display: flex;
    gap: 30px;
    overflow-x: scroll; /* Yatay kaydırma */
    -webkit-overflow-scrolling: touch; /* iOS için yumuşak kaydırma */
    scrollbar-width: none; /* Firefox için kaydırma çubuğunu gizle */
    -ms-overflow-style: none;  /* IE and Edge için kaydırma çubuğunu gizle */
    padding-bottom: 20px; /* Kaydırma çubuğu için boşluk */
}
.project-cards-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera için kaydırma çubuğunu gizle */
}


.project-card {
    flex: 0 0 auto; /* Esnemesini ve küçülmesini engelle */
    width: 320px; /* Kart genişliği */
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.project-card .project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
    color: var(--white);
    padding: 20px 20px 15px;
    font-size: 1.1rem;
    font-weight: 500;
}


/* Son Blog Yazılarımız */
.blog-section {
    padding: 80px 0;
    background-color: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.blog-card .blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-card .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card .blog-content {
    padding: 20px;
}

.blog-card .blog-meta {
    font-size: 0.85rem;
    color: var(--light-text);
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
    font-weight: 500;
}

.blog-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-text);
    line-height: 1.4;
}

.blog-card .read-more {
    color: var(--secondary-yellow);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    transition: color 0.3s ease;
}
.blog-card .read-more:hover {
    color: var(--primary-blue);
}

/* Footer - 10. Resim */
footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 60px 0;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-col .logo img {
    height: 60px; /* Footer logosu daha büyük */
    margin-bottom: 15px;
}
.footer-col.brand-info img { /* Özellikle footer logosunu hedefle */
    height: 60px; /* Resimdeki logonun boyutu */
    width: auto;
    margin-bottom: 15px;
}

.footer-col p {
    color: var(--white);
    opacity: 0.8;
    margin-bottom: 15px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--secondary-yellow);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.3s ease, color 0.3s ease;
}
.footer-col ul li a:hover {
    opacity: 1;
    color: var(--secondary-yellow);
}

.footer-col .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.footer-col .social-icons a {
    color: var(--white);
    font-size: 1.3rem;
    transition: color 0.3s ease;
}
.footer-col .social-icons a:hover {
    color: var(--secondary-yellow);
}

.footer-col .footer-contact {
    color: var(--white);
    opacity: 0.9;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block; /* Linkin tamamı tıklanabilir olsun */
    margin-bottom: 5px;
}
.footer-col .footer-contact:hover {
    color: var(--secondary-yellow);
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .hero {
        height: 400px;
        padding: 0 5%;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero-content p {
        font-size: 1rem;
    }

    .info-section {
        flex-direction: column; /* Tablette alt alta */
        text-align: center;
        padding: 60px 20px;
    }
    .info-section.reverse {
        flex-direction: column; /* Tersine düzen de alt alta */
    }
    .info-section .content {
        padding: 0;
    }
    .info-section .content .buttons {
        justify-content: center; /* Butonları ortala */
    }
    .info-section .content ul {
        text-align: left; /* Listeyi sola yasla */
        display: inline-block; /* Ortalamak için */
    }

    .project-container-grid {
        grid-template-columns: 1fr; /* Tablette tek sütun */
        gap: 60px;
    }
    .projects-section .text-content {
        text-align: center;
        padding-right: 0;
    }
    .project-navigation {
        justify-content: center; /* Navigasyon butonlarını ortala */
    }
    .project-cards-wrapper {
        justify-content: flex-start; /* Kartları soldan başla */
    }

}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: flex-start;
    }
    nav.main-menu {
        width: 100%;
        margin-top: 15px;
        box-shadow: none; /* Menü sabit olunca kaldır */
    }
    nav.main-menu ul {
        flex-direction: column;
        gap: 15px;
        display: none; /* Varsayılan olarak gizli */
        width: 100%;
        text-align: center;
    }
    nav.main-menu ul.active {
        display: flex; /* Aktif olunca görünür */
    }
    nav.main-menu ul li a {
        padding: 10px 0;
        border-bottom: 1px solid var(--border-light);
        width: 100%;
    }
    nav.main-menu ul li:last-child a {
        border-bottom: none;
    }

    .mobile-menu-toggle {
        display: block; /* Mobil cihazlarda görünür */
        position: absolute;
        top: 25px;
        right: 20px;
    }

    .section-title {
        font-size: 2rem;
    }
    .info-section .content h2 {
        font-size: 2rem;
    }
    .info-section .image-overlay-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -40px; /* Resmin biraz altına sarkıt */
        width: calc(100% - 40px); /* Kapsayıcı genişliğinde */
        text-align: center;
        align-items: center;
        padding: 20px;
    }
    .info-section.reverse .image-wrapper {
        margin-bottom: 50px; /* Overlay kartı için yer aç */
    }
}

@media (max-width: 480px) {
    .hero {
        height: 350px;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 0.9rem;
    }
    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .info-section {
        padding: 40px 15px;
    }
    .info-section .content h2 {
        font-size: 1.8rem;
    }
    .info-section .content p, .info-section .content ul li {
        font-size: 1rem;
    }
    .category-grid, .blog-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .project-card {
        width: 280px; /* Daha küçük kartlar */
    }
}
/* Temel Renkler ve Fontlar (Görsellere Yakın) */
:root {
    --primary-yellow: #f7a000; /* Görseldeki belirgin sarı tonu */
    --dark-blue-gray: #2c3e50; /* Footer ve bazı metinler için koyu ton */
    --light-gray-bg: #f8f8f8; /* Genel açık gri arka plan */
    --text-color: #333;
    --light-text: #ccc;
    --font-family-base: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; /* Windows varsayılanlarına yakın bir sans-serif */
    /* Eğer özel bir Google Font kullanacaksanız buraya eklersiniz */
    /* --font-family-heading: 'Montserrat', sans-serif; */
}

/* Genel Sıfırlamalar ve Vücut Stili */
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family-base);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff; /* Genel sayfa arka planı beyaz olsun */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    /* font-family: var(--font-family-heading, var(--font-family-base)); */
    color: var(--dark-blue-gray);
    margin-top: 0;
    margin-bottom: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Kenarlardan boşluk */
}

/* Header - Üst Menü */
header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* Hafif gölge */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px; /* Logoyu görsele uygun boyutlandırın */
}

.main-nav ul {
    display: flex;
    gap: 30px; /* Menü öğeleri arası boşluk */
}

.main-nav a {
    color: var(--text-color);
    font-weight: 600; /* Kalınlık */
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-yellow);
}

.main-nav a.active {
    color: var(--primary-yellow); /* Aktif menü rengi */
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-yellow); /* Aktif menü alt çizgisi */
}

/* Hero Section (İlk Görsel) */
.hero-section {
    position: relative;
    height: 380px; /* Görsele göre ayarlanmış yükseklik */
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    padding-left: 10%; /* Yazının konumunu ayarlamak için */
    color: #fff;
    overflow: hidden; /* Taşmaları engellemek için */
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Resimdeki hafif karartma */
    z-index: 0;
}

.hero-section .hero-content {
    position: relative;
    z-index: 1; /* İçeriği overlay'in üzerine getirme */
    text-align: left; /* Yazıyı sola hizala */
}

.hero-section .small-text {
    font-size: 1.1em;
    font-weight: 400;
    margin-bottom: 5px;
    color: var(--primary-yellow); /* "Bizi yakından tanıyın" yazısı sarı */
}

.hero-section h1 {
    font-size: 3.5em; /* Büyük başlık */
    margin-top: 0;
    margin-bottom: 0;
    color: #fff; /* Beyaz başlık */
    line-height: 1.1;
}

/* Innovation Section (İkinci Görsel) */
.innovation-section {
    padding: 80px 0;
    background-color: #fff;
}

.innovation-section h2 {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 50px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Metin daha dar, görsel biraz daha geniş */
    gap: 60px; /* Metin ve görsel arası boşluk */
    align-items: center; /* Dikeyde ortalama */
}

.content-grid .text-block p {
    font-size: 1.05em;
    line-height: 1.7;
    text-align: justify; /* Metni yasla */
}

.content-grid .image-block img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* Görseldeki hafif yuvarlatılmış köşeler */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Hafif gölge */
}

/* Solutions Section (Üçüncü Görsel) */
.solutions-section {
    padding: 80px 0;
    background-color: var(--light-gray-bg); /* Hafif gri arka plan */
}

.solutions-section h2 {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 50px;
}

.solution-text-block {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.05em;
    line-height: 1.7;
}

.solution-text-block p {
    margin-bottom: 25px;
    text-align: justify;
}

.solution-text-block strong {
    color: var(--primary-yellow); /* Vurgulu kelimeler sarı */
    font-weight: 700;
}


/* Corporate Sub-Menu (Footer'daki "Kurumsal" Menüsünü Temsilen) */
.corporate-sub-menu {
    padding: 60px 0;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.corporate-sub-menu .grid-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Responsive ızgara */
    gap: 20px;
    max-width: 800px; /* Bu menü için daha dar bir genişlik */
    margin: 0 auto;
}

.corporate-sub-menu .grid-menu li {
    background-color: #f0f0f0; /* Hafif gri kutu arka planı */
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.corporate-sub-menu .grid-menu li:hover {
    background-color: var(--primary-yellow);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.corporate-sub-menu .grid-menu li:hover a {
    color: #fff;
}

.corporate-sub-menu .grid-menu a {
    font-weight: 600;
    color: var(--dark-blue-gray);
    display: block; /* Tüm kutuya tıklanabilir olmasını sağlar */
}

/* Footer - Alt Bilgi */
footer {
    background-color: var(--dark-blue-gray); /* Koyu lacivert/gri */
    color: #fff;
    padding: 60px 0 20px;
    font-size: 0.9em;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr; /* Sütun genişliklerini görsele göre ayarlayın */
    gap: 30px;
}

.footer-col {
    padding: 0 10px; /* İç boşluk */
}

.footer-col h4 {
    color: var(--primary-yellow); /* Sarı başlık */
    margin-bottom: 25px;
    font-size: 1.15em;
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a,
.footer-col ul li {
    color: var(--light-text);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-col.brand-info .footer-logo img {
    height: 45px; /* Footer logosunu ayarla */
    margin-bottom: 20px;
}

.social-links {
    margin-top: 25px;
    display: flex;
    gap: 15px; /* İkonlar arası boşluk */
}

.social-links a img {
    height: 24px;
    filter: brightness(0) invert(1); /* İkonları beyaza çevirme */
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.social-links a img:hover {
    opacity: 1;
}

.copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-text);
}

/* Responsive Ayarlamalar */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr; /* Tabletlerde tek sütun */
        gap: 30px;
    }

    .content-grid .image-block {
        order: -1; /* Görseli metnin üstüne taşı */
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr); /* Tabletlerde iki sütun */
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav ul {
        flex-direction: column; /* Mobil menü alt alta */
        text-align: center;
        gap: 10px;
    }

    .hero-section {
        height: 280px;
        padding-left: 0;
        justify-content: center;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2.5em;
    }

    .innovation-section,
    .solutions-section,
    .corporate-sub-menu,
    footer {
        padding: 40px 0;
    }

    .innovation-section h2,
    .solutions-section h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
        text-align: center;
    }

    .footer-col {
        margin-bottom: 30px;
    }

    .footer-col:last-child {
        margin-bottom: 0;
    }

    .social-links {
        justify-content: center;
    }
}
/* Genel Stil - Daha önceki root değişkenleriniz burada tanımlı olmalı */
:root {
    --primary-yellow: #f7a000;
    --dark-blue-gray: #2c3e50;
    --light-gray-bg: #f8f8f8;
    --text-color: #333;
    --light-text: #ccc;
    --font-family-base: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Hero Section - Ürünlerimiz Sayfasına Özel */
.hero-section.hero-products {
    /* Background image already set in HTML, just ensure consistent styling */
    height: 380px; /* Kurumsal sayfasındaki banner ile aynı yükseklik */
    background-position: center; /* Resmi ortalamak için */
}

/* Products Listing Section */
.products-listing-section {
    padding: 60px 0;
    background-color: #fff; /* Beyaz arka plan */
}

.products-grid-layout {
    display: grid;
    grid-template-columns: 250px 1fr; /* Sol menü 250px, ürünler kalan alanı kaplar */
    gap: 40px; /* Menü ve ürünler arası boşluk */
}

/* Categories Sidebar - Sol Menü */
.categories-sidebar {
    padding: 20px;
    background-color: #f9f9f9; /* Açık gri arka plan */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.categories-sidebar h3 {
    font-size: 1.5em;
    color: var(--dark-blue-gray);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.category-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-nav > ul > li { /* Ana kategori başlıkları */
    margin-bottom: 15px;
}

.category-nav .category-main-link {
    display: block;
    font-weight: 600;
    color: var(--dark-blue-gray);
    padding: 8px 0;
    transition: color 0.3s ease;
}

.category-nav .category-main-link:hover {
    color: var(--primary-yellow);
}

.category-nav ul ul { /* Alt kategoriler */
    padding-left: 15px;
    margin-top: 5px;
}

.category-nav ul ul li {
    margin-bottom: 8px;
}

.category-nav ul ul li a {
    color: #666;
    transition: color 0.3s ease;
}

.category-nav ul ul li a:hover {
    color: var(--primary-yellow);
}

/* Products Content - Sağ Bölüm (Ürün Kartları) */
.products-content {
    /* Bu div'in kendi bir arka planı veya padding'i yok, doğrudan grid'i içeriyor */
}

.product-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive ürün kartları */
    gap: 30px; /* Ürün kartları arası boşluk */
}

.product-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden; /* Resmin köşelerinin yuvarlanması için */
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.product-card .product-image-container {
    width: 100%;
    height: 200px; /* Resmin sabit yüksekliği */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0; /* Yüklenirken veya resim yokken arka plan */
}

.product-card .product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmi kutuya sığdırma ve kırpma */
    display: block;
}

.product-card .product-info {
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Yazıları sola hizala */
}

.product-card .product-code {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--dark-blue-gray);
    margin-bottom: 5px;
}

.product-card .product-type {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 10px;
}

.product-card .product-price {
    font-size: 1.3em;
    font-weight: 700;
    color: var(--primary-yellow); /* Fiyatı sarı yap */
    margin-top: auto; /* En alta hizala */
}

/* Pagination - Sayfalandırma */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    gap: 10px;
}

.pagination a {
    display: inline-flex; /* İçeriği ortalamak için */
    align-items: center;
    justify-content: center;
    min-width: 40px; /* Buton genişliği */
    height: 40px; /* Buton yüksekliği */
    background-color: #eee;
    color: var(--text-color);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pagination a.active,
.pagination a:hover {
    background-color: var(--primary-yellow);
    color: #fff;
}

/* Responsive Ayarlamalar */
@media (max-width: 992px) {
    .products-grid-layout {
        grid-template-columns: 1fr; /* Tabletlerde tek sütun */
    }

    .categories-sidebar {
        margin-bottom: 30px; /* Kategorilerin altında boşluk */
    }

    .products-content {
        padding: 0; /* Boşlukları sıfırla */
    }
}

@media (max-width: 768px) {
    .products-listing-section {
        padding: 40px 0;
    }

    .product-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Daha küçük ekranlar için */
    }
}
/* ==================================== */
/* Ürün Detay Sayfası - Tab ve Galeri CSS */
/* ==================================== */

.product-detail-main {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobil için tek sütun */
    gap: 40px;
    margin-bottom: 60px;
}

@media (min-width: 992px) {
    .product-detail-grid {
        grid-template-columns: 2fr 1fr; /* Masaüstü için iki sütun */
    }
}

/* Ürün Galerisi */
.product-gallery {
    position: relative;
    box-shadow: var(--card-shadow);
    border-radius: 8px;
    background-color: #fff;
    overflow: hidden;
    padding: 20px;
}

.main-product-image {
    width: 100%;
    height: auto;
    max-height: 500px; /* İstediğiniz boyuta göre ayarlayın */
    object-fit: contain; /* Görseli bozmadan sığdır */
    border-radius: 8px;
    margin-bottom: 15px;
}

.thumbnail-navigation {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.thumbnail-navigation .arrow-btn {
    background: none;
    border: none;
    font-size: 1.8em;
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.thumbnail-navigation .arrow-btn:hover {
    color: var(--secondary-color);
}

.thumbnails {
    display: flex;
    overflow-x: auto; /* Yatay kaydırma */
    gap: 10px;
    flex-grow: 1; /* Mevcut alanı doldur */
    padding: 5px 0; /* Kaydırma çubuğu için boşluk */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.thumbnails::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.thumbnail {
    width: 100px; /* Küçülen görsel boyutu */
    height: 70px; /* Küçülen görsel boyutu */
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0; /* Sıkışmayı önle */
}

.thumbnail.active,
.thumbnail:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(var(--primary-color-rgb), 0.5);
}

.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.pagination-dots .dot {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pagination-dots .dot.active {
    background-color: var(--primary-color);
}


/* Ürün Bilgi Paneli */
.product-info-panel {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
}

.product-info-panel h2 {
    font-size: 2.2em;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.product-detail-price {
    font-size: 1.8em;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.price-note {
    font-size: 0.9em;
    color: #888;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.price-note i {
    color: var(--secondary-color);
}

.product-attributes {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.attribute-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1em;
    color: var(--text-color);
}

.attribute-item img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.room-details {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px dashed #eee;
    display: grid;
    grid-template-columns: 1fr 1fr; /* İki sütun */
    gap: 20px;
}

.room-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1em;
    color: var(--text-color);
}

.room-item img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Diğer Bilgiler ve Sorumluluk Kartları */
.other-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 60px;
}

@media (min-width: 768px) {
    .other-info-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 kart üstte */
    }
    .responsibility-card {
        grid-column: span 1; /* Kendi sütununda kalsın */
    }
    .info-card-top {
        grid-column: span 1;
    }
}

@media (min-width: 992px) {
    .other-info-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 kart üstte */
    }
    .responsibility-card {
        grid-column: span 1; /* Kendi sütununda kalsın */
    }
    .info-card-top {
        grid-column: span 1;
    }
}

/* Ortadaki 3 kartın altında kalan diğer bilgiler için yatay yayılma */
.other-info-grid .full-width-heading {
    grid-column: 1 / -1; /* Tüm sütunları kapla */
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 2em;
    color: var(--heading-color);
}

.info-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.info-card img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 5px;
}

.info-card p {
    font-size: 1.1em;
    color: var(--text-color);
    line-height: 1.5;
}

.responsibility-card {
    text-align: left;
    gap: 0; /* İçindeki elemanların kendi boşlukları olsun */
    align-items: flex-start;
    padding: 30px;
}

.responsibility-card h4 {
    font-size: 1.4em;
    color: var(--heading-color);
    margin-bottom: 15px;
    width: 100%;
}

.responsibility-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.responsibility-card ul li {
    font-size: 0.95em;
    color: var(--text-color);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.4;
}

.responsibility-card ul li::before {
    content: "\f00c"; /* Font Awesome check icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 2px;
}


/* Proje Detayları - Tab Bölümü */
.product-specs {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr; /* Mobil için tek sütun */
    gap: 40px;
}

@media (min-width: 768px) {
    .product-specs {
        grid-template-columns: 1fr 1fr; /* Masaüstü için iki sütun */
    }
}

.spec-section {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
}

.spec-section h3 {
    font-size: 1.8em;
    color: var(--heading-color);
    margin-bottom: 20px;
    text-align: center;
}

.spec-section p {
    font-size: 1em;
    color: var(--text-color);
    line-height: 1.6;
}

/* Tabs */
.tabs {
    display: flex;
    flex-wrap: wrap; /* Küçük ekranlarda alta geçsin */
    gap: 10px;
    margin-bottom: 25px;
    justify-content: center; /* Butonları ortala */
}

.tab-button {
    background-color: #eee;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.95em;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s ease;
    white-space: nowrap; /* Metni tek satırda tut */
}

.tab-button:hover {
    background-color: #ddd;
    color: var(--primary-color);
}

.tab-button.active {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 8px rgba(var(--primary-color-rgb), 0.2);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-out; /* İçeriğin yumuşakça görünmesi */
}

.tab-content.active {
    display: block;
}

.tab-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: block; /* Mesajla çakışmaması için */
    margin: 0 auto; /* Görseli ortala */
}

.tab-content .no-content-message {
    text-align: center;
    color: #888;
    padding: 30px 20px;
    font-size: 1.1em;
    border: 1px dashed #ddd;
    border-radius: 5px;
    margin-top: 20px;
    display: none; /* Varsayılan olarak gizli, JS ile gösterilecek */
}

/* Video Kapsayıcı (Responsive YouTube embed için) */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Oran (9 / 16 * 100) */
    height: 0;
    overflow: hidden;
    background-color: #000; /* Video yüklenirken arka plan */
    border-radius: 8px;
    box-shadow: var(--card-shadow);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
button {
  background-color: #f8b400; /* Yeşil */
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border: none;
  border-radius: 8px;
}

button:hover {
  background-color: #45a049; /* Hover anında koyulaşsın */
}
/* style.css */

/* ... (diğer CSS kodlarınız) ... */

/* PRODUCTS SECTION */
.products-content {
    padding: 40px 0;
    background-color: #fff;
}

.product-cards-grid {
    /* Buradaki grid-template-columns değerini güncelliyoruz */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Her satıra 3 ürün sığacak şekilde ayarlandı */
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

/* ... (diğer CSS kodlarınız) ... */

/* Responsive Tasarım (Örnek: Tablet ve Mobil cihazlar için) */
@media (max-width: 992px) {
    /* Tabletlerde 2'şerli sırala */
    .product-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Daha dar ekranlarda 2'li sıra için min-width'i küçült */
    }
}

@media (max-width: 768px) {
    /* Mobil cihazlarda tekli sırala */
    .product-cards-grid {
        grid-template-columns: 1fr;
    }
}