html, body {
    height: 100%;
    margin: 0;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f8fafc;
    color: #1f2937;
	display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-nav {
    display: flex;
    gap: 14px;
}

/* NORMAL BUTON */
.main-nav a {
    padding: 10px 20px;

    font-size: 15px;
    font-weight: 600;
    text-decoration: none;

    color: #374151;
    border-radius: 8px;

    transition: all 0.25s ease;
}

/* HOVER */
.main-nav a:hover {
    background: #f9fafb;
    color: #111827;
    transform: translateY(-1px);
}
}

/* AKTİF SAYFA */
.main-nav a.active {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(220,38,38,0.3);
}


nav {
    display: flex;
    gap: 12px;
    align-items: center;
}

nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    border-radius: 8px;
    background: #f3f4f6;        /* açık gri */
    color: #1f2937;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

nav a:hover {
    background: #2563eb;
    color: #fff;
    box-shadow: 0 6px 16px rgba(37,99,235,0.25);
    transform: translateY(-1px);
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #2563eb;     /* mavi vurgu */
    transition: width 0.25s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Aktif sayfa */
nav a.active {
    background: #2563eb;
    color: #fff;
    box-shadow: 0 6px 16px rgba(37,99,235,0.25);
}

nav a.active::after {
    width: 100%;
}

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(
        135deg,
        #0b2a4a 0%,
        #123b6d 50%,
        #1c5fd4 100%
    );
    color: #fff;
    overflow: hidden;
}

.hero-content {
    max-width: 700px;
    padding: 0 40px;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    max-width: 550px;
}

.hero::after {
    content: "";
    position: absolute;
    right: -150px;
    top: -150px;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.hero-bg {
    position: relative;
    min-height: 75vh;
    background: url("resimler/hero-makine.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(11, 42, 74, 0.9) 0%,
        rgba(11, 42, 74, 0.75) 50%,
        rgba(11, 42, 74, 0.6) 100%
    );
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-left: 2px solid rgba(255,255,255,0.2);
    padding-left: 30px;
}

.hero-actions {
    margin-top: 35px;
    display: flex;
    gap: 18px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: #f7931e; /* kurumsal turuncu */
    color: #fff;
    box-shadow: 0 10px 30px rgba(247,147,30,0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(247,147,30,0.45);
    background: #ff9f2e;
}

.btn-outline {
    border: 2px solid rgba(255,255,255,0.7);
    color: #fff;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
}


.stat-box strong {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
}

.stat-box span {
    display: block;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}


.hero h1 {
    margin: 0;
    font-size: 36px;
}

.hero p {
    margin-top: 10px;
    color: #dbeafe;
}

.blog-section {
    margin: 50px auto;
	max-width: 1200px;   /* 🔥 ANA OLAY BU */
    display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    align-items: stretch; /* Tüm kartlar eşit yükseklik */
}

.blog-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.2s ease;
	display: flex;
    flex-direction: column;
    height: 100%;
	max-width: 380px;   /* Kartların şişmesini engeller */
    margin: 0 auto;
	position: relative;
}

.blog-card img {
    width: 100%;
    height: 220px;          /* Sabit yükseklik */
    object-fit: cover;      /* Taşanı kırpar, orantıyı korur */
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
	transition: transform 0.4s ease, filter 0.4s ease;
    aspect-ratio: 16 / 9;  /* 🔥 Sabit oran */
}

/* Hover olunca */
.blog-card:hover img {
    transform: scale(1.08);      /* Hafif zoom */
    filter: brightness(85%);     /* Hafif koyulaştırma */
}

.blog-card:hover {
    transform: translateY(-6px);
}

.blog-card h2 {
    transition: color 0.3s ease;
}

.blog-card:hover h2 {
    color: #2563eb;
}

.read-more {
    display: inline-block;
    margin-top: 12px;
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
	margin-top: auto;
}

/* Ok işareti animasyon için */
.read-more::after {
    content: " →";
    position: relative;
    left: 0;
    transition: left 0.3s ease;
}

/* Hover efekti */
.read-more:hover {
    color: #1e40af;
}

.read-more:hover::after {
    left: 6px; /* Ok sağa kayar */
}

.read-more {
    padding: 8px 14px;
    border-radius: 4px;
    background: rgba(37, 99, 235, 0.08);
}

.read-more:hover {
    background: rgba(37, 99, 235, 0.15);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

/* Başlık ve içerik üstte kalsın diye */
.blog-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1; /* İçerik alanı uzar */
}

.blog-card img {
    width: 100%;
    height: 220px;          /* Sabit yükseklik */
    object-fit: cover;      /* Taşanı kırpar, orantıyı korur */
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.category {
    border-left: 4px solid #2563eb;
    border-radius: 4px;
    background: #eef2ff;
    padding: 6px 10px;
	display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 50px;
    background: #eef2ff;
    color: #3730a3;
    margin-bottom: 12px;
}

.section-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 45px;
    position: relative;
    letter-spacing: 0.5px;
	text-transform: uppercase;
}

.section-title::after {
    content: "";
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #1e40af);
    display: block;
    margin: 14px auto 0;
    border-radius: 2px;
}

/* Varsayılan ikon alanı */
.category::before {
    font-size: 14px;
}

/* Kategoriye göre ikonlar */
.category.aserisi::before {
    content: "📊";
}

.category.bserisi::before {
    content: "💼";
}

.category.cserisi::before {
    content: "📈";
}

.blog-card:hover .category {
    background: linear-gradient(135deg, #c7d2fe, #a5b4fc);
}

.blog-content h2 {
    margin: 10px 0;
    font-size: 18px;
}

.read-more {
    text-decoration: none;
    color: #2563eb;
    font-weight: bold;
    font-size: 14px;
}

footer {
    background: #1f2937;
    color: #cbd5e1;
    text-align: center;
    padding: 20px;
    margin-top: 0px;
}

.post-hero h1 {
    margin: 10px 0;
    font-size: 32px;
}

.meta {
    color: #6b7280;
    font-size: 14px;
}

.post-container {
    max-width: 800px;
    margin: 40px auto;
    line-height: 1.8;
    font-size: 16px;
}

.post-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 25px;
}

.post-container h2 {
    margin-top: 30px;
    color: #1e3a8a;
}

.post-container ul {
    margin-left: 20px;
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    text-decoration: none;
    color: #2563eb;
    font-weight: bold;
}

.post-layout {
    display: grid;
    grid-template-columns: 3fr 1.2fr;
    gap: 40px;
    max-width: 1100px;
    margin: 70px auto;
    padding: 0 20px;
}

.post-title {
    font-size: 34px;
    margin-bottom: 10px;
    color: #0f172a;
    line-height: 1.3;
}

.post-hero-wrap {
    position: relative;
    margin: 25px 0 35px;
	border-bottom: 1px solid #e5e7eb;
    padding-bottom: 25px;
}

.post-hero-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.05));
}

.post-meta {
    display: flex;
    gap: 18px;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 25px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 15px;
}

.post-hero {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    border-radius: 18px; /* Daha yumuşak köşe */
    margin: 30px 0;
    
    /* Derinlik efekti */
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 5px 15px rgba(0, 0, 0, 0.05);

    /* Hafif canlılık */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-wrapper {
    margin: 0;      /* Dış boşluk yok */
    padding: 0;     /* İç boşluk yok */
}

.post-content > *:first-child {
    margin-top: 0;
}

.post-gallery {
    width: 100%;
    max-width: 700px;
    aspect-ratio: 16 / 9;   /* Profesyonel oran */
    margin: 0 auto;          /* Üst-alt boşluğu kaldır */
    border-radius: 0;        /* Köşe boşluk hissini kaldırır */
    overflow: hidden;
    box-shadow: none;        /* Gölge de boşluk hissi verir, kaldırıyoruz */
    height: 500px;      /* SABİT YÜKSEKLİK */
	position: relative;
}

.post-gallery img {
    object-fit: cover;   /* ALANI TAM DOLDURUR */
    display: block;
	position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;   /* KRİTİK */
    max-width: none !important;
    max-height: none !important;
	transition: transform 0.5s ease;
	cursor: zoom-in;
}

.gallery-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.gallery-controls button {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-controls button:hover {
    background: #1e40af;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    font-size: 40px;
    padding: 10px 18px;
    cursor: pointer;
    border-radius: 8px;
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.3);
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 30px;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

.post-hero:hover {
    transform: scale(1.02);
    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.06);
}

.post-gallery:hover img {
    transform: scale(1.08);
}

.post-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.post-content p {
    line-height: 1.9;
    color: #374151;
    margin-bottom: 20px;
    font-size: 16px;
}

.post-content h2 {
    margin: 35px 0 12px;
    color: #111827;
    font-size: 22px;
}

blockquote {
    background: #eef2ff;
    padding: 22px;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    margin: 30px 0;
    font-style: italic;
    color: #1e3a8a;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-box {
    background: #ffffff;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.sidebar-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-box li {
    margin-bottom: 10px;
}

.sidebar-box a {
    text-decoration: none;
    color: #374151;
    font-size: 14px;
}

.sidebar-box a:hover {
    color: #2563eb;
}

.sidebar-box h3 {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1e40af;
    margin-bottom: 15px;
}

/* ===== SIDEBAR KATEGORİ BUTONLARI ===== */

.sidebar-box .breadcrumb a{
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 10px 14px;
    border-radius: 10px;

    background: linear-gradient(135deg, #1f1f1f, #2a2a2a);
    color: #f5f5f5;

    font-size: 14px;
    font-weight: 500;
    text-decoration: none;

    border: 1px solid rgba(255,255,255,0.08);
    transition: all .25s ease;
}

/* Ok ikonu */
.sidebar-box .breadcrumb a::after{
    content: "›";
    opacity: 0.5;
    transition: transform .25s ease, opacity .25s ease;
}

/* Hover */
.sidebar-box .breadcrumb a:hover{
    background: linear-gradient(135deg, #ffb703, #ffd166);
    color: #111;

    border-color: rgba(0,0,0,0.15);
    box-shadow: 0 6px 18px rgba(255,183,3,0.35);
}

.sidebar-box .breadcrumb a:hover::after{
    opacity: 1;
    transform: translateX(4px);
}


.recent-posts-widget {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.recent-post-item {
    display: flex;
    gap: 12px;
    align-items: center;
    text-decoration: none;
    color: #333;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.25s ease;
}

.recent-post-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.recent-post-info {
    display: flex;
    flex-direction: column;
}

.recent-post-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.recent-post-date {
    font-size: 12px;
    color: #777;
    margin-top: 4px;
}

.recent-post-item:hover {
    background: #f8f9fb;
    transform: translateX(4px);
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
    padding-left: 14px;
    letter-spacing: 0.3px;
}

.widget-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: 20px;
    background: #007bff;
    border-radius: 2px;
}

.widget-title::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #eef1f5;
    margin-top: 10px;
}

.page-content {
    padding: 40px 0 60px;
}

.content-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.value-card {
    text-align: center;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.mv-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.mv-card {
    position: relative;
    overflow: hidden;
}

/* Kurumsal vurgu çizgisi */
.mv-card::top {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #1e73be;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1e73be;
}

.primary-btn {
    background: #1e73be;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.primary-btn:hover {
    background: #155a94;
}

.info-item {
    margin-bottom: 15px;
}

.info-item strong {
    display: block;
    margin-bottom: 4px;
}

.map-card {
    margin-top: 30px;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    margin-top: 15px;
    border-radius: 14px;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-info-card h2 {
    margin-bottom: 20px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.info-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 15px;
    border-radius: 12px;
    background: #f8fafc;
    transition: 0.3s;
}

.info-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.info-icon {
    font-size: 20px;
    width: 40px;
    height: 40px;
    background: #1e73be15;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.info-box h4 {
    margin: 0 0 4px;
    font-size: 15px;
}

.info-box p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

.section-heading {
    position: relative;
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 8px;
    font-weight: 700;
}

.section-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 3px;
    background: #1e73be;
    border-radius: 3px;
}

.section-heading {
    letter-spacing: 0.3px;
}

.form-group {
    position: relative;
    margin-bottom: 18px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    font-family: inherit;
    background: #fff;
	resize: none;
}

.form-group label {
    position: absolute;
    left: 12px;
    top: 14px;
    color: #888;
    font-size: 14px;
    pointer-events: none;
    transition: 0.25s ease;
    background: #fff;
    padding: 0 4px;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -8px;
    left: 10px;
    font-size: 12px;
    color: #1e73be;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e73be;
}

.category-filter {
    text-align: center;
    margin-bottom: 45px;
}

.category-filter a {
    text-decoration: none !important;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 30px;
    margin: 6px 10px;
    border-radius: 50px;
    border: none;
    background: #eef2f7;
    color: #1e293b;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13,110,253,0.25);
}

.filter-btn.active {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: #fff;
    box-shadow: 0 6px 18px rgba(13,110,253,0.35);
}



.sidebar-title {
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 2px solid #eee;
    padding-bottom: 8px;
}

.member-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.member-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 10px;
    transition: 0.3s;
    background: #f9fafc;
}

.member-item:hover {
    transform: translateX(4px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
}

.member-item img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.member-item strong {
    display: block;
    font-size: 14px;
}

.member-item span {
    font-size: 12px;
    color: #777;
}

.pagination a {
    text-decoration: none !important;
}

.pagination {
    display: flex;
    justify-content: center;   /* YATAY ORTA */
    align-items: center;
    gap: 8px;
    margin: 50px 0 30px;
    width: 100%;
}

.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    margin: 4px;
    border-radius: 10px;
    background: #f1f5f9;
    color: #334155;
    font-weight: 600;
    transition: all 0.25s ease;
}

.page-btn:hover {
    background: #0d6efd;
    color: #fff;
    transform: translateY(-2px);
}

.page-btn.active {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: #fff;
    box-shadow: 0 4px 10px rgba(13,110,253,0.35);
}

.product-page{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:50px;
    margin-top:40px;
}

.product-gallery img{
    width:100%;
    border-radius:12px;
}

.thumbs{
    display:flex;
    gap:10px;
    margin-top:12px;
}

.thumbs img{
    width:70px;
    height:70px;
    object-fit:cover;
    cursor:pointer;
    border-radius:8px;
}

.product-info h1{
    font-size:28px;
    margin-bottom:15px;
}

.contact-box{
    margin-top:25px;
    padding:15px;
    background:#f1f5f9;
    border-radius:8px;
}

.page-nav-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 8px;
}

.back-btn {
    text-decoration: none;
    font-weight: 600;
    color: #2563eb;
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(37,99,235,0.1);
    transition: all .2s ease;
}

.back-btn:hover {
    background: rgba(37,99,235,0.2);
}

.page-info {
    font-size: 14px;
    color: #555;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
}

/* Link olan adımlar */
.breadcrumb a {
    display: inline-flex;
    align-items: center;

    padding: 6px 14px;
    background: #f1f5f9;
    color: #1e293b;
    font-size: 14px;
    font-weight: 500;

    border-radius: 999px; /* pill */
    text-decoration: none;
    transition: all 0.25s ease;
}

/* Hover efekti */
.breadcrumb a:hover {
    background: #2563eb;
    color: #fff;
    transform: translateY(-1px);
}

/* Ok işareti */
.breadcrumb span {
    color: #94a3b8;
    font-size: 14px;
}

/* Aktif (son adım) */
.breadcrumb .current {
    padding: 6px 14px;
    background: #2563eb;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 999px;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 250px;
    overflow: hidden;
    display: inline-block;
}

.btn-outline {
    border: 2px solid #2563eb;
    color: #2563eb;
    padding: 8px 18px;
    border-radius: 30px;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-name {
    font-weight: 600;
    color: #2563eb;
}

.topbar {
	height: 90px;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;

    padding: 26px 0;
    position: sticky;
    top: 0;
    z-index: 1000;

    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

/* TOPBAR MENU - BUTON */
.topbar .main-menu {
    display: flex;
    gap: 14px;
}

.topbar .main-menu a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 9px 20px !important;
    font-size: 14px;
    font-weight: 600;

    color: #1e293b !important;
    text-decoration: none !important;

    background: #f1f5f9 !important;
    border-radius: 999px !important;

    transition: all 0.25s ease;
}

/* Hover */
.topbar .main-menu a:hover {
    background: #2563eb !important;
    color: #fff !important;
    transform: translateY(-2px);
}

/* Active */
.topbar .main-menu a.active {
    background: #2563eb !important;
    color: #fff !important;
}

/* LOGO ALANI */
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* KURUMSAL DİKEY LOGO */
.logo-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 4px;
}

.logo-stack img {
    height: 100px;
    object-fit: contain;
}

.logo-stack span {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #111827;
}

/* ALTTA İNCE KURUMSAL ÇİZGİ */
.logo-stack span::after {
    content: "";
    display: block;

    width: 42px;
    height: 2px;
    margin: 6px auto 0;

    background: linear-gradient(
        90deg,
        #dc2626,   /* kırmızı */
        #9ca3af    /* gri */
    );

    border-radius: 2px;
}

/* HOVER – ABARTISIZ */
.logo-stack:hover img {
    transform: scale(1.03);
}

.logo-stack img {
    transition: transform 0.25s ease;
}

.logo-inline {
    display: flex;
    align-items: center;
    gap: 12px;

    text-decoration: none;
}

.logo-inline img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-inline span {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;

    color: #111827;
    white-space: nowrap;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #0b2a4a; /* koyu kurumsal lacivert */
    line-height: 1;
    white-space: nowrap;
}

.logo-text strong {
    font-weight: 600;
    color: #1c5fd4; /* kurumsal mavi */
}

/* ==============================
   WOW ÜYELİK FORMU
============================== */

.auth-box {
    width: 420px;
    margin: 50px auto;
    padding: 40px 35px;
    border-radius: 18px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
        0 25px 60px rgba(0,0,0,0.15),
        0 0 0 1px rgba(255,255,255,0.6) inset;
    position: relative;
    overflow: hidden;
    animation: fadeUp 0.6s ease;
}

/* Gradient glow */
.auth-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(135deg, #2563eb, #38bdf8, #2563eb);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* HEADER */
.auth-header h2 {
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    color: #0f172a;
}

.auth-header p {
    text-align: center;
    font-size: 14px;
    color: #64748b;
    margin-top: 6px;
}

/* TABLAR */
.auth-tabs {
    display: flex;
    background: #e2e8f0;
    border-radius: 12px;
    padding: 5px;
    margin: 25px 0;
}

.auth-tabs .tab {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-tabs .tab.active {
    background: #ffffff;
    color: #2563eb;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* FORM */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* INPUT */
.uyelikform-group input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    font-size: 14px;
    background: rgba(255,255,255,0.9);
    transition: all 0.25s ease;
}

.uyelikform-group input::placeholder {
    color: #94a3b8;
}

.uyelikform-group input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow:
        0 0 0 4px rgba(37,99,235,0.18),
        0 10px 25px rgba(37,99,235,0.25);
    transform: translateY(-1px);
}

/* BUTON */
.uyelikbtn-primary {
    margin-top: 10px;
    padding: 15px;
    border-radius: 14px;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 12px 30px rgba(37,99,235,0.4);
}

.uyelikbtn-primary:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 18px 45px rgba(37,99,235,0.55);
}

.hidden {
    display: none;
}

/* ANİMASYON */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* PANEL GRID */
.panel-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
    margin-top: 40px;
}

.panel-menu {
    background: linear-gradient(180deg, #0f172a, #020617);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,.25);
}

.panel-menu button {
    background: transparent;
    border: none;
    color: #cbd5f5;
    padding: 14px 16px;
    border-radius: 12px;
    text-align: left;
    font-size: 15px;
    cursor: pointer;
    transition: all .25s ease;
}

.panel-menu button:hover {
    background: rgba(255,255,255,.08);
    transform: translateX(4px);
}

.panel-menu button.active {
    background: linear-gradient(135deg,#2563eb,#1e40af);
    color: #fff;
    font-weight: 600;
}

/* PANEL ALANI */
.panel-section {
    display: none;
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
    animation: fadeUp .4s ease;
}

.panel-section.active {
    display: block;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-section h2 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
}

/* FORM */
.panel-section form {
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(14px);
    border-radius: 18px;
    padding: 30px;
    max-width: 520px;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
}

.panel-section input {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 16px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    transition: all .25s ease;
}

.panel-section input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37,99,235,.15);
}

.panel-section button {
    background: linear-gradient(135deg,#2563eb,#1e40af);
    color: #fff;
    border: none;
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
}

.panel-section button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37,99,235,.4);
}

/* MESAJ */
#profilMsg,
#sifreMsg {
    margin-top: 12px;
    font-size: 14px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

.admin-table th {
    background: #0f172a;
    color: #fff;
    padding: 14px;
    font-size: 14px;
}

.admin-table td {
    padding: 14px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
}

.admin-table tr:hover {
    background: #f1f5f9;
}

.btn-danger {
    background: linear-gradient(135deg,#ff416c,#ff4b2b);
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
}

.btn-danger:hover {
    opacity: .85;
}

.profile-photo-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.profile-photo-box img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #0072ff;
    box-shadow: 0 10px 25px rgba(0,114,255,.4);
}

.upload-btn {
    background: linear-gradient(135deg,#00c6ff,#0072ff);
    padding: 10px 18px;
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
}

.upload-btn input {
    display: none;
}

.form-error{
    color:#fff;
    background:#e74c3c;
    padding:8px 12px;
    border-radius:6px;
    margin-top:8px;
}

.form-success{
    color:#fff;
    background:#2ecc71;
    padding:8px 12px;
    border-radius:6px;
    margin-top:8px;
}

.user-dropdown {
    position: relative;
}

.user-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: #222;
}

.user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #2563eb;
	cursor: pointer;
}

.arrow {
    font-size: 12px;
}

.user-menu-dropdown {
    position: absolute;
    right: 0;
    top: 55px;
    width: 180px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 15px 30px rgba(0,0,0,.15);
    overflow: hidden;
    display: none;
    z-index: 1000;
}

.user-menu-dropdown a {
    display: block;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background .2s;
}

.user-menu-dropdown a:hover {
    background: #f3f4f6;
}

.user-menu-dropdown .logout {
    color: #b91c1c;
    font-weight: 600;
}

.user-menu-dropdown.open {
    display: block;
}

.badge-admin {
    background: linear-gradient(135deg,#dc2626,#991b1b);
    color: #fff;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 999px;
    margin-left: 6px;
}

.avatar-box {
    display:flex;
    justify-content:center;
    margin-bottom:15px;
}

.profile-avatar {
    width:130px;
    height:130px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #0a66ff;
}

.public-profile-card{
    max-width: 420px;
    margin: 80px auto;
    background: linear-gradient(145deg,#0f2027,#203a43,#2c5364);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,.4);
}

.public-avatar{
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255,255,255,.3);
    margin-bottom: 20px;
}

.public-profile-card h1{
    font-size: 24px;
    margin-bottom: 10px;
}

.public-profile-card .bio{
    font-size: 15px;
    line-height: 1.6;
    opacity: .9;
}

.muted{
    opacity: .6;
}

.bio-textarea{
    width: 100%;
    min-height: 120px;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #ddd;
    resize: none;
    font-size: 14px;
    transition: .3s;
    background: #fafafa;
}

.bio-textarea:focus{
    outline: none;
    border-color: #2c5364;
    background: #fff;
}

/* ===== PROFİL GÖRÜNTÜLEME (WOW MODE) ===== */

.profile-view-card{
    position: relative;
    max-width: 520px;
    margin: 40px auto;
    padding: 35px 30px 30px;
    text-align: center;

    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.25),
        rgba(255,255,255,0.05)
    );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.25);

    box-shadow:
        0 20px 40px rgba(0,0,0,0.25),
        inset 0 0 0 1px rgba(255,255,255,0.15);

    animation: fadeUp 0.6s ease forwards;
}

/* Hafif parlayan üst çizgi */
.profile-view-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffb703, transparent);
    border-radius: 10px;
}

/* ===== AVATAR ===== */

.profile-view-card .avatar-box{
    margin-top: -90px;
    margin-bottom: 15px;
}

.profile-view-card .profile-avatar{
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;

    background: #111;
    border: 5px solid #fff;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.4),
        0 0 0 6px rgba(255,183,3,0.35);

    transition: transform .35s ease, box-shadow .35s ease;
}

.profile-view-card:hover .profile-avatar{
    transform: scale(1.05) rotate(-1deg);
    box-shadow:
        0 15px 40px rgba(0,0,0,0.45),
        0 0 0 8px rgba(255,183,3,0.55);
}

/* ===== İSİM ===== */

.profile-view-card h2{
    margin: 12px 0 4px;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: .3px;

    background: linear-gradient(90deg, #ffb703, #ffd166);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== EMAIL ===== */

.profile-email{
    font-size: 14px;
    opacity: .85;
    margin-bottom: 18px;
    color: #eee;
}

/* ===== BIO ===== */

.profile-bio{
    margin-top: 18px;
    padding: 16px 18px;

    background: rgba(0,0,0,0.35);
    border-radius: 14px;

    font-size: 15px;
    line-height: 1.6;
    color: #f1f1f1;

    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.profile-bio.empty{
    opacity: .6;
    font-style: italic;
}

/* ===== ANİMASYON ===== */

@keyframes fadeUp{
    from{
        opacity: 0;
        transform: translateY(30px) scale(.98);
    }
    to{
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.yorumlar {
    margin-top: 5px;
}

.yorumlar h3 {
    font-weight: 700;
    margin-bottom: 25px;
}

.yorum {
    display: flex;
    gap: 18px;
    background: #fff;
    padding: 20px;
    border-radius: 18px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.yorum:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.yorum img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eee;
}

.yorum-icerik {
    flex: 1;
}

.yorum-icerik strong {
    font-size: 15px;
}

.yorum-icerik span {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}

.yorum-icerik p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.yorum-sil-btn {
    background: #f8d7da;
    border: none;
    color: #842029;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
    transition: 0.2s;
}

.yorum-sil-btn:hover {
    background: #f5c2c7;
}

/* Form */
#yorumForm {
    margin-top: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

#yorumForm textarea {
    width: 100%;
    box-sizing: border-box;
    border-radius: 16px;
    padding: 14px 16px;
    border: 1px solid #e5e5e5;
    min-height: 110px;
    margin-bottom: 12px;
    resize: none;
    transition: 0.3s;
    font-size: 14px;
}

#yorumForm textarea:focus {
    border: 1px solid #111;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
    outline: none;
}

#yorumForm button {
    background: #111;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    transition: 0.3s;
}

#yorumForm button:hover {
    background: #333;
}

/* ============================= */
/* PREMIUM INDUSTRIAL SECTION */
/* ============================= */

.industrial-products {
    background:#f8fafc;
    padding:120px 0 0 0; /* alt padding yok */
    color:#fff;
}

.industrial-header {
    margin-bottom:70px;
}

.industrial-header h2 {
    font-size:32px;
    font-weight:600;
    letter-spacing:1px;
}

.industrial-header .line {
    width:70px;
    height:2px;
    background:#d4af37; /* daha premium altın */
    margin-top:18px;
}

.industrial-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:50px;
    padding-bottom:120px; /* footer’a yapışması için burada kontrol */
}

/* ============================= */
/* HAVALI PREMIUM CARD */
/* ============================= */

.industrial-card {
    position:relative;
    background:#ffffff;
    border-radius:14px;
    overflow:hidden;
    transition:0.4s ease;
    box-shadow:0 8px 30px rgba(0,0,0,0.05);
}

.industrial-card:hover {
    transform:translateY(-6px);
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.industrial-card a {
    text-decoration:none;
    color:#111;
    display:block;
}

.card-image {
    position:relative;
    overflow:hidden;
}

.card-image img {
    width:100%;
    height:260px;
    object-fit:cover;
    transition:0.5s ease;
}

.image-overlay {
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0));
    opacity:0.7;
    transition:0.4s;
}

.industrial-card:hover img {
    transform:scale(1.07);
}

.industrial-card:hover .image-overlay {
    opacity:0.9;
}

.card-content {
    padding:28px;
    position:relative;
}

.card-category {
    font-size:11px;
    letter-spacing:1.5px;
    color:#c9a227;
    font-weight:600;
}

.card-content h3 {
    margin-top:12px;
    font-size:18px;
    font-weight:600;
}

.card-button {
    margin-top:18px;
    font-size:14px;
    font-weight:600;
    opacity:0;
    transform:translateY(10px);
    transition:0.4s ease;
    color:#111;
}

.industrial-card:hover .card-button {
    opacity:1;
    transform:translateY(0);
}

.industrial-info {
    padding:28px;
}

.industrial-info span {
    font-size:12px;
    color:#c9a227;
    letter-spacing:1px;
}

.industrial-info h3 {
    margin-top:12px;
    font-size:18px;
    font-weight:500;
}

/* ============================= */
/* SECTION HEADER GÜÇLÜ STİL */
/* ============================= */

.industrial-header {
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:60px;
}

.section-title-dark {
    font-size:34px;
    font-weight:700;
    color:#111; /* koyu net renk */
    position:relative;
}

.section-title-dark::after {
    content:"";
    position:absolute;
    left:0;
    bottom:-12px;
    width:60px;
    height:4px;
    background:#c9a227;
}

/* ============================= */
/* TÜMÜNÜ GÖR BUTONU */
/* ============================= */

.view-all-btn {
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:12px 22px;
    border:2px solid #111;
    text-decoration:none;
    font-weight:600;
    font-size:14px;
    color:#111;
    transition:0.3s ease;
}

.view-all-btn span {
    transition:0.3s ease;
}

.view-all-btn:hover {
    background:#111;
    color:#fff;
}

.view-all-btn:hover span {
    transform:translateX(4px);
}
