html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
}
.logo img {
  height: 90px;
  width: auto;
  display: block;
}
.footer-logo img {
  height: 100px;      
  width: auto;
  display: block;
  margin-bottom: 15px;
  filter: grayscale(100%); /* Gri ton efekti */
  opacity: 0.8;            /* Bir tık silik */
  transition: all 0.3s ease;
}

.footer-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
/* Base */
:root {
    --primary: #b68d40;
    --primary-dark: #926e2e;
    --secondary: #544832;
    --light: #f7f4e9;
    --gray: #777777;
    --light-gray: #f0f0f0;
    --border: #e5e5e5;
    --success: #28a745;
    --danger: #dc3545;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

.text-center {
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary);
    color: white;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);

    min-height: 40px;
    min-width: 100px;
    box-sizing: border-box;
    text-align: center;
    line-height: 1.2;
    border: none;
}

.btn:hover {
    background-color: var(--primary-dark);
    color: white;
}

.btn-success {
    background-color: var(--success);
    color: white;
}

.btn-success:hover {
    background-color: #218838;
    color: white;
}

.btn-light {
    background-color: white;
    color: var(--dark);
}

.btn-light:hover {
    background-color: #f8f9fa;
    color: var(--dark);
}

.btn-outline-light {
    border: 2px solid white;
    background-color: transparent;
    color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--dark);
}

.btn-outline {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

.btn-full {
    width: 100%;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    padding-top: 50px;
    margin-bottom: 15px;
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.section-header p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Header & Navigation */
#main-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0px 0;
    transition: all 0.3s ease;
    background-color: transparent;
    color: white;
    z-index: 999;
}

#main-header.scrolled {
    background-color: white;
    color: black;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#main-header.scrolled .main-menu > li > a {
    color: black;
}

#main-header.scrolled .top-right a {
    color: black;
}

#main-header.scrolled .menu-toggle span {
    background-color: black;
}

.top-right a {
    color: white;
    margin-left: 20px;
}

.top-right a:hover {
    color: rgba(255, 255, 255, 0.8);
}

nav.main-nav {
  height: 70px; /* ne kadar istiyorsan */
  display: flex;
  align-items: center; /* logoyu dikey ortala */
}

nav.main-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo a {
    display: inline-block;
    color: var(--dark);
    font-weight: 700;
    font-size: 24px;
}

.logo a h1 {
    margin: 0;
    font-size: 26px;
}

.logo a span {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    /* Layout shift önleme - responsive uyumlu */
    min-width: 25px;
    min-height: 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 1060;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
    /* Layout shift önleme - responsive uyumlu */
    min-height: 2px;
    box-sizing: border-box;
    position: absolute;
    left: 0;
}

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 9px;
}

.menu-toggle span:nth-child(3) {
    top: 18px;
}

.main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    /* Layout shift önleme - responsive uyumlu */
    min-height: 50px;
    box-sizing: border-box;
    position: relative;
    z-index: 1050;
}

.main-menu ul {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-menu li {
    position: relative;
    margin: 0 5px;
}

.main-menu li a {
    color: var(--dark);
    font-weight: 500;
    padding: 8px 12px;
    display: block;
    font-size: 15px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.main-menu li a:hover, .main-menu li.active a {
    color: var(--primary);
    background-color: rgba(182, 141, 64, 0.05);
}

.main-menu li.active a {
    font-weight: 600;
    position: relative;
}

.main-menu li.active a:after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 12px;
    right: 12px;
    height: 2px;
    background-color: var(--primary);
}

/* Dropdown Menu */
.main-menu li.has-dropdown {
    position: relative;
}

.main-menu li.has-dropdown > a {
    display: flex;
    align-items: center;
}

.main-menu li.has-dropdown > a i {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.main-menu li.has-dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    border-radius: 4px;
    padding: 10px 0;
    z-index: 1050;
    border: 1px solid rgba(182, 141, 64, 0.1);
}

.main-menu li.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
}

.dropdown li {
    margin: 0;
    width: 100%;
}

.dropdown li a {
    padding: 10px 20px;
    display: block;
    color: var(--dark);
    font-size: 14px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.dropdown li a:hover {
    background-color: rgba(182, 141, 64, 0.05);
    color: var(--primary);
    border-left-color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    margin-left: 15px;
    background-color: rgba(182, 141, 64, 0.05);
    padding: 8px 15px;
    border-radius: 30px;
}

.header-actions a {
    margin: 0 10px;
    color: var(--dark);
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease;
}

.header-actions a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--primary);
    color: white;
    font-size: 10px;
    font-weight: 600;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-container {
    background: var(--light-gray);
    padding: 20px 0;
    display: none;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.search-container.active {
    display: block;
}

.search-container form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.search-container input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

.search-container button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 99vh; 
    overflow: visible;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none; /* << burası kritik */
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
    align-items: center;
    overflow: hidden;
}

.hero-slider .slide.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto; /* sadece aktif slayt tıklanabilir */
}

.hero-slider.dragging {
    user-select: none;
    cursor: grabbing;
}

/* Slider Alternatif Resim Çözümü */
.slider-fallback-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.7);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}

.slide-content {
    position: absolute;
    top: 60%;
    left: 20%;             
    max-width: 600px;
    padding: 0;
    transform: translate(-50%, -50%);  
    color: #fff;
    user-select: none;
    z-index: 10;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.8);
    text-align: center;
}

.slide-content h1 {
    font-size: 2.1rem;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: 0.03em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.85);
}

.slide-content p {
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.5;
    color: #eee;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
}

.slide-controls {
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 3;
    -webkit-user-select: none;
    user-select: none;
}


.slide-controls button {
    background: transparent;
    border: 1.5px solid #f7a600;
    color: #f7a600;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.slide-controls button:hover {
    background: #f7a600;
    color: #fff;
    box-shadow: 0 5px 12px rgba(247, 166, 0, 0.4);
}

.slide-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--primary);
}

/* Product Categories */
.product-categories {
    padding: 80px 0;
}

        /* Ürün kategorileri 4'lü yan yana dizilsin */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }

        @media (max-width: 1100px) {
            .category-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 700px) {
            .category-grid {
                grid-template-columns: 1fr;
            }
        }

.category-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.category-image {
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.category-content {
    padding: 20px;
    text-align: center;
}

.category-content h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.category-content p {
    color: var(--gray);
    margin-bottom: 15px;
}

/* Product Showcase */
.product-showcase {
    padding: 80px 0;
    background-color: var(--light);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary);
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
    z-index: 2;
}

.product-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-info {
    display: flex;
    flex-direction: column;
    padding: 15px;
    flex-grow: 1;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.product-category {
    font-size: 14px;
    color: #777;
    margin-bottom: 8px;
}

.product-variants {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}



.load-more {
    text-align: center;
    margin-top: 40px;
}

/* Featured Content */
.featured-content {
    padding: 80px 0;
}

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

.featured-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.featured-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.featured-text p {
    margin-bottom: 20px;
    color: var(--gray);
}

.featured-list {
    margin: 25px 0;
}

.featured-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.featured-list li i {
    color: var(--primary);
    margin-right: 10px;
}

/* Calculator Section */
.calculator-section {
    padding: 80px 0;
    background-color: var(--light);
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 16px;
}

.calculator-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.calculator-info p {
    margin-bottom: 15px;
    color: var(--gray);
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    color: var(--gray);
    font-size: 14px;
}

/* Blog Preview */
.blog-preview {
    padding: 80px 0;
}

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

.blog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-content {
    padding: 20px;
}

.blog-date {
    display: block;
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-content p {
    color: var(--gray);
    margin-bottom: 15px;
}

.read-more {
    font-weight: 600;
    font-size: 14px;
}

.read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

.blog-more {
    text-align: center;
    margin-top: 40px;
}

/* Modern Blog Stilleri */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    padding: 50px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

/* Blog Yan Panel Stilleri */
.blog-sidebar-section {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.sidebar-header {
    padding: 15px 20px;
    background-color: var(--primary);
    color: white;
}

.sidebar-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.sidebar-content {
    padding: 20px;
}

/* Arama Kutusu */
.blog-search-form {
    display: flex;
    border: 1px solid #eee;
    border-radius: 30px;
    overflow: hidden;
}

.blog-search-form input {
    flex: 1;
    border: none;
    padding: 12px 15px;
    font-size: 14px;
    outline: none;
}

.blog-search-form button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.blog-search-form button:hover {
    background-color: var(--primary-dark);
}

/* Kategoriler */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    border-bottom: 1px solid #f0f0f0;
}

.categories-list li:last-child {
    border-bottom: none;
}

.categories-list a {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.categories-list a:hover {
    color: var(--primary);
}

.categories-list .category-count {
    background-color: rgba(182, 141, 64, 0.1);
    color: var(--primary);
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 500;
}

/* Popüler Yazılar */
.popular-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popular-post-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.popular-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-post-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 15px;
}

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

.popular-post-content h4 {
    margin: 0 0 5px;
    font-size: 14px;
    line-height: 1.4;
}

.popular-post-content h4 a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.popular-post-content h4 a:hover {
    color: var(--primary);
}

.popular-post-content .post-meta {
    font-size: 12px;
    color: var(--gray);
}

/* Etiketler */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud a {
    display: inline-block;
    padding: 6px 12px;
    background-color: #f5f5f5;
    color: var(--gray);
    border-radius: 5px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s;
}

.tag-cloud a:hover {
    background-color: var(--primary);
    color: white;
}

/* Sayfalama Stilleri */
.blog-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 5px;
}

.pagination-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.pagination-list li a:hover,
.pagination-list li.active a {
    background-color: var(--primary);
    color: white;
}

.pagination-list li.prev a,
.pagination-list li.next a {
    width: auto;
    padding: 0 15px;
    border-radius: 20px;
}

.pagination-list li.disabled a {
    opacity: 0.5;
    pointer-events: none;
}

/* Footer */
footer {
    position: relative;
}

.footer-top {
    background: var(--secondary);
    color: white;
    padding: 40px 0 20px;
    margin-top: 40px;
    border-top: 5px solid var(--primary);
}

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

.footer-col {
    margin-bottom: 20px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: block;
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    background: #3d3423;
    padding: 15px 0;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}
/* WhatsApp Button Styles */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 1; /* Her zaman görünür */
    transform: none; /* Transform kaldırıldı */
}

.whatsapp-agent {
    position: relative;
    display: flex;
    align-items: center;
    background: #25d366;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-agent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.agent-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agent-avatar i {
    font-size: 28px;
    color: #25d366;
    animation: wave 2s infinite; /* Sürekli el sallama animasyonu */
}

.agent-info {
    color: white;
    line-height: 1.2;
}

.agent-info .agent-title {
    font-size: 14px;
    opacity: 0.9;
}

.agent-info .agent-status {
    font-size: 16px;
    font-weight: 600;
}

/* Mesaj balonu animasyonu */
.agent-message {
    position: absolute;
    bottom: calc(100% + 15px);
    right: 0;
    background: white;
    padding: 12px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    animation: messageFloat 2s infinite;
}

.agent-message::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 24px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

@keyframes messageFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@media (max-width: 576px) {
    .agent-message {
        display: none;
    }
    
    .whatsapp-agent {
        padding: 10px;
    }
    
    .agent-info {
        display: none;
    }
    
    .agent-avatar {
        margin-right: 0;
    }
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s 0.3s linear;
    z-index: 1050;
}

.modal.active {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal-content.modern-cart {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #fff;
    box-shadow: -5px 0 25px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 480px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modal.active .modal-content.modern-cart {
    transform: translateX(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #d2d2d7;
    flex-shrink: 0;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1d1d1f;
}

.modal-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: #6c757d;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.modal-close-btn:hover {
    background-color: #f5f5f7;
    color: #1d1d1f;
}

.modal-body {
    padding: 0;
    overflow-y: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}




/* İletişim Sayfleası Stilri */
.page-header {
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--secondary);
    padding: 100px 0;
    text-align: center;
    position: relative;
    margin-top: 0;
    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    font-size: 28px;
    margin: 0;
    font-weight: 700;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.breadcrumb span {
    color: #fff;
    opacity: 0.7;
}

.breadcrumb a:hover {
    opacity: 1;
}

/* Hero Bölümü */
.contact-hero {
    background-color: #ffffff;
    padding: 60px 0;
    text-align: center;
    color: white;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h2 {
    font-size: 32px;
    color: rgb(0, 0, 0);
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.9);
    margin-bottom: 30px;
}

.contact-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.contact-btn {
    min-width: 180px;
    padding: 10px 15px;
    border-radius: 30px;
    transition: transform 0.3s ease;
    font-weight: 500;
    font-size: 14px;
}

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

.contact-btn:hover {
    transform: translateY(-5px);
}

/* İletişim Bilgileri */
.contact-info {
    padding: 60px 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.contact-icon {
    font-size: 20px;
    color: var(--primary);
    margin-right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(182, 141, 64, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-details h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary);
}

.contact-details p {
    margin-bottom: 10px;
    color: var(--gray);
    line-height: 1.6;
}

.contact-note {
    font-size: 14px;
    color: var(--gray);
    font-style: italic;
}

.btn-text {
    display: inline-block;
    color: var(--primary);
    font-weight: 500;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.btn-text i {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.btn-text:hover i {
    transform: translateX(5px);
}

/* İletişim Formu ve Harita */
.contact-form-section {
    padding: 60px 0;
    background-color: var(--light);
}

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

.form-container {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.section-title {
    margin-bottom: 20px;
}

.section-title h2 {
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 8px;
    position: relative;
}

.divider {
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
    margin-top: 10px;
}

.section-title p {
    font-size: 14px;
    margin-bottom: 5px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(182, 141, 64, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
}

.checkbox-container input {
    width: auto;
    margin-right: 5px;
    margin-top: 3px;
}

.checkbox-container label {
    font-weight: normal;
    font-size: 12px;
    line-height: 1.4
}

.map-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px; /* Gerekirse yükseklik ayarlayabilirsin */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    align-items: stretch;
}

.map-container iframe {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.map-card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 250px;
}

.map-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--secondary);
}

.map-card h3 i {
    color: var(--primary);
    margin-right: 8px;
}

.map-card p {
    font-size: 14px;
    margin-bottom: 15px;
    color: var(--gray);
}

.btn-sm {
    padding: 8px 15px;
    font-size: 14px;
}

/* SSS Bölümü */
.contact-faq {
    padding: 60px 0;
    background-color: white;
}

.faq-container {
    max-width: 700px;
    margin: 30px auto 0;
}

.faq-item {
    margin-bottom: 12px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    background-color: white;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-question h3 {
    font-size: 16px;
    margin: 0;
    font-weight: 600;
    color: var(--secondary);
}

.faq-icon {
    color: var(--primary);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(182, 141, 64, 0.1);
}

.faq-answer {
    display: none;
    padding: 15px;
    border-top: 1px solid #f0f0f0;
}

.faq-answer p {
    margin: 0;
    color: var(--gray);
    line-height: 1.6;
    font-size: 14px;
}

/* CTA Bölümü */
.cta-section {
    background-color: var(--secondary);
    padding: 40px 0;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 10px 20px;
    font-size: 14px;
    min-width: 160px;
}

/* Responsive İletişim Sayfası */
@media (max-width: 992px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }
    @media (max-width: 992px) {
        .map-container {
            min-height: 300px;
            height: 400px;
        }
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto 15px;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 40px 0;
    }
    
    .contact-hero h2 {
        font-size: 28px;
    }
    
    .contact-hero p {
        font-size: 16px;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .contact-hero-buttons {
        gap: 10px;
    }
    
    .contact-btn {
        min-width: 180px;
        padding: 10px 15px;
    }
}

/* Ürün Sayfası Stilleri */

.product-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.product-hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.product-hero p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.product-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    transition: transform 0.3s, background 0.3s;
}

.feature-item:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.15);
}

.feature-item i {
    color: #2ecc71;
    font-size: 1.2rem;
}

.feature-item span {
    color: #fff;
    font-weight: 500;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    margin: 50px 0;
}

.catalog-sidebar {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.color-swatch {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary);
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
    z-index: 2;
}

.product-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-info {
    display: flex;
    flex-direction: column;
    padding: 15px;
    flex-grow: 1;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.product-category {
    font-size: 14px;
    color: #777;
    margin-bottom: 8px;
}

.product-variants {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}



@media (max-width: 992px) {
    .catalog-layout {
        grid-template-columns: 1fr;
    }
    
    .catalog-sidebar {
        order: 2;
    }
    
    .product-grid {
        order: 1;
    }
}

@media (max-width: 768px) {
    .product-hero h2 {
        font-size: 2rem;
    }
    
    .product-features {
        flex-wrap: wrap;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Ürün Özellikleri Bölümü */
.product-features-section {
    padding: 80px 0;
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(182, 141, 64, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.feature-content h3 {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.feature-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* Uygulama Rehberi Bölümü */
.application-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.application-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.step {
    display: flex;
    align-items: flex-start;
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
}

.step-content p {
    font-size: 14px;
    color: var (--gray);
    line-height: 1.6;
}

.application-video-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.application-video {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.video-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.video-content h3 {
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.video-content p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .catalog-layout {
        grid-template-columns: 1fr;
    }
    
    .catalog-sidebar {
        position: static;
        margin-bottom: 30px;
    }
    
    .application-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .application-video {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .application-video-section {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .application-steps {
        grid-template-columns: 1fr;
    }
    
    .application-video-section {
        padding: 30px 0;
    }
    
    .application-video {
        padding: 0 15px;
    }
    
    .product-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-item {
        width: 100%;
    }
    
    .catalog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .sorting {
        width: 100%;
    }
    
    .sorting select {
        width: 100%;
    }
    
    .feature-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .product-hero h2 {
        font-size: 28px;
    }
    
    .product-hero p {
        font-size: 14px;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
}




main {
    flex: 1;
    /* Layout shift önleme - main elementi için */
    min-height: 100vh;
    box-sizing: border-box;
    position: relative;
}

/* İletişim Bölümü */
.footer-col.iletisim {
    background: transparent;
    padding: 0;
}

.footer-col.iletisim h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col.iletisim h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-col.iletisim p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}
.color-options {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5'li grid */
    gap: 8px;
    padding: 10px 0;
    min-height: 80px; /* Sabit minimum yükseklik */
    align-items: start;
}

.color-option {
    aspect-ratio: 1;
    position: relative;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.color-option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.color-option:hover {
    transform: scale(1.1);
    z-index: 2;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Tooltip stil */
.color-option::after {
    content: attr(title);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 3;
}

.color-option:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Responsive düzen */
@media (max-width: 768px) {
    .color-options {
        grid-template-columns: repeat(4, 1fr);
        min-height: 70px;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .color-options {
        grid-template-columns: repeat(3, 1fr);
        min-height: 60px;
        gap: 4px;
    }
}

.selected-model-info {
    font-size: 0.85rem;
    color: #666;
    margin: 5px 0;
    line-height: 1.4;
}

/* Hakkımızda, Referanslar ve SSS Sayfaları için CSS Düzeltmeleri */
.about-grid,
.vision-mission-grid,
.values-grid,
.features-grid,
.process-grid,
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.faq-content-section .accordion {
    margin-bottom: 30px;
}

/* Responsive düzenlemeler */
@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.accordion-item {
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

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

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

.accordion-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.accordion-icon {
    color: var(--primary);
    transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 20px;
    max-height: 1000px;
}

.accordion-content p {
    margin: 0 0 15px;
    color: #666;
    line-height: 1.6;
}

.helpful-buttons {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.helpful-buttons p {
    margin: 0 0 10px;
    font-size: 14px;
    color: #666;
}

.helpful-actions {
    display: flex;
    gap: 10px;
}

.helpful-actions button {
    background: none;
    border: 1px solid #ddd;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s;
}

.helpful-actions button:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.helpful-yes:hover {
    background-color: rgba(40, 167, 69, 0.1);
    border-color: #28a745;
    color: #28a745;
}

.helpful-no:hover {
    background-color: rgba(220, 53, 69, 0.1);
    border-color: #dc3545;
    color: #dc3545;
}

.about-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/about-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-hero-content p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 80px 0;
}

.about-counters {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.counter-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 20px;
    background-color: var(--light);
    border-radius: 5px;
}

.counter-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

.counter-text {
    color: var(--gray);
    font-size: 14px;
}

.vision-mission {
    padding: 80px 0;
    background-color: var(--light);
}

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

.vision-box, .mission-box {
    padding: 40px;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.vision-icon, .mission-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(182, 141, 64, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--primary);
}

.our-values {
    padding: 80px 0;
}

.value-item {
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(182, 141, 64, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 20px;
    color: var(--primary);
}

.production-process {
    padding: 80px 0;
    background-color: var(--light);
}

.process-item {
    display: flex;
    align-items: flex-start;
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.process-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.process-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
}

.why-choose-us {
    padding: 80px 0;
}

.team-member {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s;
}

.social-links {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    padding: 15px 0;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.team-member:hover .social-links {
    transform: translateY(0);
}

.social-links a {
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    color: var(--secondary);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h3 {
    margin: 0 0 5px;
    font-size: 18px;
}

.member-info span {
    display: block;
    color: var(--gray);
    font-size: 14px;
}

@media (max-width: 992px) {
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
    
    .about-counters {
        justify-content: center;
    }
    
    .counter-item {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 576px) {
    .about-hero-content h1 {
        font-size: 32px;
    }
    
    .counter-item {
        flex: 0 0 100%;
    }
    
    .process-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .process-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

.projects-section {
    padding: 0px;
}

.project-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.project-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.project-category {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.project-category span {
    background-color: var(--primary);
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 500;
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    margin: 0 0 15px;
    font-size: 18px;
    color: var(--secondary);
}

.project-meta {
    display: flex;
    margin-bottom: 15px;
    color: var(--gray);
    font-size: 14px;
}

.project-meta p {
    margin: 0 20px 0 0;
    display: flex;
    align-items: center;
}

.project-meta p i {
    margin-right: 8px;
    color: var(--primary);
}

.project-link {
    color: var(--primary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

.project-link i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.project-link:hover {
    color: var(--primary-dark);
}

.project-link:hover i {
    transform: translateX(3px);
}

/* Modern Pagination */
.projects-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin: 48px 0 32px 0;
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    padding: 18px 28px;
    min-height: 70px;
}
.projects-pagination .prev-page,
.projects-pagination .next-page {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 90px;
    height: 48px;
    border-radius: 16px;
    background: #f5f5f5;
    color: #b1b1b1;
    font-weight: 600;
    font-size: 18px;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    outline: none;
    cursor: not-allowed;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
    padding: 0 22px;
}
.projects-pagination .prev-page:not(:disabled),
.projects-pagination .next-page:not(:disabled) {
    background: #fff;
    color: var(--primary);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.projects-pagination .prev-page:not(:disabled):hover,
.projects-pagination .next-page:not(:disabled):hover {
    background: linear-gradient(90deg, #f7f4e9 0%, #fff 100%);
    color: var(--primary-dark);
    box-shadow: 0 6px 18px rgba(182, 141, 64, 0.13);
    transform: translateY(-2px) scale(1.04);
}
.projects-pagination .page-numbers {
    display: flex;
    align-items: center;
    gap: 14px;
}
.projects-pagination .page-numbers a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    border-radius: 16px;
    background: #fff;
    color: #333;
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    outline: none;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
    position: relative;
    z-index: 1;
}
.projects-pagination .page-numbers a.active {
    background: linear-gradient(90deg, #b68d40 0%, #e2c385 100%);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(182, 141, 64, 0.18);
    transform: scale(1.08);
    border: none;
}
.projects-pagination .page-numbers a:hover:not(.active) {
    background: linear-gradient(90deg, #f7f4e9 0%, #fff 100%);
    color: var(--primary);
    box-shadow: 0 6px 18px rgba(182, 141, 64, 0.13);
    transform: translateY(-2px) scale(1.04);
}
.projects-pagination .page-numbers span {
    color: #b1b1b1;
    font-size: 22px;
    padding: 0 10px;
    user-select: none;
}
@media (max-width: 768px) {
    .projects-pagination {
        gap: 8px;
        padding: 10px 8px;
        min-height: 48px;
    }
    .projects-pagination .prev-page,
    .projects-pagination .next-page,
    .projects-pagination .page-numbers a {
        min-width: 36px;
        height: 36px;
        font-size: 15px;
        border-radius: 10px;
        padding: 0 10px;
    }
    .projects-pagination .page-numbers {
        gap: 6px;
    }
}

/* Sayfalandırma Stilleri */
.projects-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.projects-pagination button {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.projects-pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.projects-pagination button:not(:disabled):hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.page-numbers {
    display: flex;
    gap: 0.5rem;
}

.page-numbers a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.page-numbers a.active,
.page-numbers a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Delivery Steps Styling */
.delivery-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.step-item {
    text-align: center;
    min-width: 120px;
}

.step-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.step-content h5 {
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--primary);
    font-weight: 600;
}

.step-content p {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.step-arrow {
    color: var(--primary);
    font-size: 14px;
    opacity: 0.5;
    animation: arrowBlink 2s infinite;
}

@keyframes arrowBlink {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@media (max-width: 768px) {
    .delivery-steps {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    
    .step-item {
        min-width: 100px;
        flex: 0 0 calc(50% - 20px);
    }
    
    .step-arrow {
        display: none;
    }

    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .step-item {
        flex: 0 0 calc(100% - 20px);
        margin-bottom: 15px;
    }
    
    .step-content h5 {
        font-size: 13px;
    }
    
    .step-content p {
        font-size: 11px;
    }
}

/* Mobil görünüm için responsive tasarım */
@media (max-width: 991px) {
    .menu-toggle {
        display: block;
        z-index: 9999;
        margin-left: 0;
        position: fixed;
        right: 20px;
        top: 25px;
    }

    #main-header {
        position: fixed;
        width: 100%;
        z-index: 9998;
        background: transparent;
        box-shadow: none;
    }

    .main-menu {
        position: fixed;
        top: 0;
        right: -100%;
        left: auto;
        width: 320px;
        height: 100vh;
        background: #fff;
        padding: 0;
        transition: right 0.3s ease;
        z-index: 9997;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        -webkit-overflow-scrolling: touch;
        display: flex;
        flex-direction: column;
    }

    .main-menu.open {
        right: 0;
        left: auto;
    }

    /* Kapatma Butonu */
    .menu-close {
        background: none;
        border: none;
        font-size: 24px;
        color: #333;
        cursor: pointer;
        padding: 0;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: color 0.3s ease;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 10000;
    }

    .menu-close:hover {
        color: var(--primary);
    }

    .main-menu ul {
        flex-direction: column;
        padding: 0;
        margin: 0;
        flex: 1;
    }

    .main-menu li {
        margin: 0;
        width: 100%;
        position: relative;
    }

    .main-menu li a {
        padding: 18px 20px;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #f0f0f0;
        color: #333;
        font-size: 16px;
        font-weight: 500;
        display: block;
        position: relative;
        z-index: 9999;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.3s ease;
        -webkit-tap-highlight-color: rgba(0,0,0,0.1);
        touch-action: manipulation;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .main-menu li a:hover,
    .main-menu li a:active {
        background: #f8f9fa;
        color: var(--primary);
    }

    .main-menu li a.active {
        color: #ff6b35;
        background: #fff5f2;
    }

    /* Menü Footer */
    .menu-footer {
        padding: 20px;
        background: #f8f9fa;
        border-top: 1px solid #eee;
    }

    .menu-cta {
        margin-bottom: 20px;
    }

    .cta-text {
        font-size: 14px;
        color: #666;
        margin-bottom: 15px;
        text-align: center;
    }

    .cta-button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .cta-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #ff6b35;
        border: none;
        color: white;
        font-size: 18px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .cta-btn:hover {
        background: #e55a2b;
        transform: scale(1.05);
    }

    .cta-arrow {
        font-weight: bold;
    }

    .cta-text-btn {
        font-size: 16px;
        font-weight: 600;
        color: #333;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .menu-illustration {
        height: 150px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 10px;
        margin-top: 15px;
        position: relative;
        overflow: hidden;
    }

    .dropdown {
        position: static;
        width: 100%;
        background: #f8f9fa;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        display: none;
    }

    body.menu-open:before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.3);
        z-index: 1040;
    }
    
    /* Menü açıkken sayfa kaydırmasını tamamen engelle */
    body.menu-open * {
        -webkit-user-select: none !important;
        -moz-user-select: none !important;
        -ms-user-select: none !important;
        user-select: none !important;
    }
    
    body.menu-open .main-menu,
    body.menu-open .main-menu * {
        -webkit-user-select: auto !important;
        -moz-user-select: auto !important;
        -ms-user-select: auto !important;
        user-select: auto !important;
    }
}

@media (max-width: 767px) {
    .logo a h1 {
        font-size: 22px;
    }
    
    .header-actions {
        margin-right: 40px;
    }
    
    .main-menu {
        padding-top: 70px;
    }
}

@media (max-width: 576px) {
    .logo a h1 {
        font-size: 20px;
    }
    
    .main-menu li a {
        font-size: 15px;
    }
}

/* Modern Blog Stilleri */

.blog-card .post-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.blog-card:hover .post-image img {
    transform: scale(1.1);
}

.blog-card .post-category {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.blog-card .post-category span {
    display: inline-block;
    padding: 6px 12px;
    background: var(--primary);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card .post-bookmark {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.blog-card .post-bookmark button {
    width: 36px;
    height: 36px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.blog-card .post-bookmark button i {
    color: var(--gray);
    font-size: 16px;
    transition: all 0.3s;
}

.blog-card .post-bookmark button:hover {
    background: var(--primary);
}

.blog-card .post-bookmark button:hover i {
    color: white;
}

.blog-card .post-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card .post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--gray);
}

.blog-card .post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card .post-meta i {
    color: var(--primary);
}

.blog-card .post-title {
    margin: 0 0 15px;
    font-size: 20px;
    line-height: 1.4;
}

.blog-card .post-title a {
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s;
}

.blog-card .post-title a:hover {
    color: var(--primary);
}

.blog-card .post-excerpt {
    margin: 0 0 20px;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
}

.blog-card .post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.blog-card .post-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-card .author-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-card .post-author span {
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary);
}

.blog-card .read-more {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.blog-card .read-more:hover {
    color: var(--primary-dark);
    gap: 8px;
}

.pagination.modern-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
    gap: 20px;
}

.modern-pagination .page-numbers {
    display: flex;
    gap: 8px;
}

.modern-pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    min-width: 40px;
    height: 40px;
    background: white;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.modern-pagination a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.modern-pagination a.active {
    background: var(--primary);
    color: white;
}

/* Blog Abonelik Bölümü */
.blog-subscribe {
    margin: 60px 0;
}

.subscribe-card {
    background: linear-gradient(45deg, var(--primary), #2c3e50);
    border-radius: 15px;
    padding: 40px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.subscribe-content {
    flex: 1;
}

.subscribe-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.subscribe-card p {
    color: white;
}

.subscribe-form {
    width: 100%;
    max-width: 400px;
}

.subscribe-form .form-group {
    display: flex;
    position: relative;
}

.subscribe-form input {
    flex: 1;
    padding: 15px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.subscribe-form button {
    position: absolute;
    right: 4px;
    top: 4px;
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    background: var(--primary);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.subscribe-form button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Blog Detay Sayfası */
.blog-single {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 0;
}

.blog-single-header {
    text-align: center;
    margin-bottom: 30px;
}

.blog-single-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--gray);
    font-size: 14px;
}

.blog-single-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-single-meta i {
    color: var(--primary);
}

.blog-single-title {
    font-size: 36px;
    line-height: 1.3;
    color: var(--secondary);
    margin: 0;
}

.blog-single-featured-image {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-single-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-single-content {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

.blog-single-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--secondary);
}

.blog-single-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--secondary);
}

.blog-single-content p {
    margin-bottom: 20px;
}

.blog-single-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
}

.blog-single-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 20px 30px;
    margin: 30px 0;
    background: #f9f9f9;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.blog-single-content ul, 
.blog-single-content ol {
    margin: 20px 0;
    padding-left: 20px;
}

.blog-single-content li {
    margin-bottom: 10px;
}

.blog-author-box {
    display: flex;
    gap: 25px;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
}

.blog-author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.blog-author-content h4 {
    margin: 0 0 10px;
    color: var(--secondary);
    font-size: 20px;
}

.blog-author-content p {
    margin: 0 0 15px;
    color: #666;
    line-height: 1.6;
}

.blog-social-share {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.blog-social-share span {
    font-weight: 600;
    color: var(--secondary);
}

.blog-social-links {
    display: flex;
    gap: 10px;
}

.blog-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 50%;
    color: #666;
    transition: all 0.3s;
}

.blog-social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.blog-related-posts {
    margin: 50px 0;
}

.blog-related-posts h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--secondary);
    text-align: center;
}

.blog-comments {
    margin: 50px 0;
}

.blog-comments-header {
    margin-bottom: 30px;
}

.blog-comments-header h3 {
    font-size: 24px;
    color: var(--secondary);
}

.comment-list {
    margin-bottom: 40px;
}

.comment-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.comment-author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.comment-author-name {
    font-weight: 600;
    color: var(--secondary);
}

.comment-date {
    color: #999;
    font-size: 14px;
}

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

.comment-reply {
    margin-top: 15px;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: inline-block;
}

.comment-reply:hover {
    text-decoration: underline;
}

.comment-reply-form h3 {
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.reply-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(182, 141, 64, 0.2);
}

.form-submit {
    margin-top: 10px;
}

.form-submit button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

/* Medya Sorguları */
@media (max-width: 992px) {

    
    .subscribe-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .subscribe-form {
        max-width: 100%;
    }
    
    .blog-single-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {

    
    .blog-single {
        padding: 30px 20px;
    }
    
    .blog-single-title {
        font-size: 26px;
    }
    
    .blog-single-content h2 {
        font-size: 24px;
    }
    
    .blog-single-content h3 {
        font-size: 20px;
    }
    
    .reply-form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .blog-author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Bildirim */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    color: #333;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

.notification i {
    font-size: 20px;
}

.notification.success {
    border-left: 4px solid #28a745;
}

.notification.success i {
    color: #28a745;
}

.notification.error {
    border-left: 4px solid #dc3545;
}

.notification.error i {
    color: #dc3545;
}

.notification.info {
    border-left: 4px solid var(--primary);
}

.notification.info i {
    color: var(--primary);
}

/* --- CSS Değişkenleri --- */
/* Genel değişkenler (eğer başka dosyalarda da kullanılıyorsa :root içinde tanımlanabilir) */
:root {
    --primary: #b68d40; /* Örnek ana renk */
    --secondary: #544832; /* Örnek ikinci renk */
    --text-color: #555;
    --heading-color: #544832;
    --light-grey: #f8f8f8;
    --border-color: #f0f0f0;

    /* Bölüm Boşlukları */
    --section-padding-desktop: 80px 0;
    --section-padding-tablet: 50px 0;
    --section-padding-mobile: 30px 0;

    /* Başlık Ayarları */
    --section-title-margin-bottom: 20px; /* Başlığın altındaki boşluk */

    /* Ürün Kategori Ayarları */
    --category-gap-desktop: 50px;
    --category-gap-tablet: 30px;
    --category-image-max-width-desktop: 450px;
    --category-image-margin-desktop: 50px; /* Görsel ile içerik arası boşluk */

    /* Galeriye özel değişkenler (Swiper uyumlu) */
    --gallery-item-gap: 20px; /* Swiper spaceBetween ile eşleşmeli (Varsayılan) */
    --gallery-image-fixed-height: 250px; /* Görselin SABİT yüksekliği (Desktop büyük ekranlar için) */
    --gallery-overlay-height: 30%; /* Overlay yüksekliği (Artık üstte) */
    --gallery-overlay-bg: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%); /* Gradient yönü değiştirildi */
    --gallery-item-border-radius: 8px;
    --gallery-item-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    --gallery-item-shadow-hover: 0 12px 25px rgba(0, 0, 0, 0.15);
    --gallery-item-transform-hover: translateY(-5px); /* Hoverda hafif yukarı kaydırma */
    --gallery-image-transform-hover: scale(1.08); /* Hoverda görseli hafif büyütme */
    --gallery-transition-duration: 0.3s; /* Geçiş süresi */
    --gallery-title-font-size: 1.2em; /* Başlık fontu */
    --gallery-title-text-shadow: 1px 1px 3px rgba(0,0,0,0.5); /* Başlık metin gölgesi */
    --gallery-description-margin-bottom: 40px; /* Açıklama alt boşluğu */

    /* Swiper Sayfalama (Nokta) renkleri, boyutu */
    --swiper-pagination-color: var(--primary); /* Aktif noktanin rengi */
    --swiper-pagination-bullet-inactive-color: rgba(0, 0, 0, 0.3); /* Pasif noktalarin rengi */
    --swiper-pagination-bullet-inactive-opacity: 1; /* Pasif noktalarin opakligi */
    --swiper-pagination-bullet-size: 10px; /* NOKTA BOYUTU */

     /* Aktif Slide Vurgulama (slidesPerView: 1 iken scale genellikle kullanılmaz) */
    --active-slide-scale: 1.00; /* slidesPerView: 1 iken 1.00, >1 iken ayarlanabilir */
    --active-slide-shadow: var(--gallery-item-shadow-hover); /* Aktif slide gölgesi */

     /* Swiper Container Padding (Kenarlardaki boşluğu yönetmek için) */
    --swiper-container-padding-horizontal-desktop: 80px; /* Desktop yatay padding */

    /* Swiper Alt Container Boşluğu (Swiper'dan sonraki pagination container'ının üst boşluğu) */
     --swiper-pagination-container-margin-top: 30px;

     /* Pagination Divinin Üstündeki Boşluk (Görseller ile arası) */
     --pagination-margin-top: 0px; /* project-gallery-bottom container'ının kendi üst boşluğu var */
     /* Pagination Divinin Altındaki Boşluk */
     --pagination-margin-bottom: 0px; /* Altında bir şey yok */

     /* Yeni Değişken: Pagination Container ve Buton Arası Boşluk */
     --pagination-container-button-gap: 25px; /* Noktalar container'ı ile buton container'ı arasi boşluk */

      /* Yeni Değişken: Proje Kartı Üzerindeki "Detayları Gör" Butonu Stilleri (Kaldırıldı) */
     /*
     --project-detail-button-bg: rgba(255, 255, 255, 0.95);
     --project-detail-button-color: var(--secondary);
     --project-detail-button-border-radius: 4px;
     --project-detail-button-padding: 6px 12px;
     --project-detail-button-font-size: 0.9em;
     --project-detail-button-transition: all 0.3s ease;
     --project-detail-button-hover-bg: var(--primary);
     --project-detail-button-hover-color: white;
     --project-detail-button-hover-shadow: 0 2px 8px rgba(0,0,0,0.2);
     */

     /* Overlay İçindeki İçerik Konumlandırması */
     --overlay-content-padding: 15px;
     --overlay-item-gap: 5px; /* Başlık ve lokasyon arası boşluk */
}


/* Ürünlerimiz Sayfası CSS */

/* page-header ve breadcrumb stilleri */
.page-header {
    background-color: #f5f5f5;
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
}

.page-header h1 {
    font-size: 36px;
    color: var(--secondary); /* Değişken kullanıldı */
    margin-bottom: 15px;
    font-weight: 700;
}
/* Ürünler Banner Stili */
.products-banner {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 10px; /* Banner altındaki boşluk */
}

.products-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-title {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 4%;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
}

.banner-title h1 {
    color: white;
    font-size: 56px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}


/* Ürün Kategorileri - DİKEY YAPI */

/* Bölüm Sarmalayıcı */
.product-category-section {
    padding: var(--section-padding-desktop); /* Değişken kullanıldı */
    border-bottom: 1px solid var(--border-color); /* Değişken kullanıldı */
    background-color: #fff; /* Varsayılan arka plan rengi */
}

.product-category-section:last-child {
    border-bottom: none; /* Son bölümden sonra çizgiyi kaldır */
}

/* Çift sıradaki bölümler için farklı arka plan rengi */
.product-category-section:nth-child(even) {
    background-color: var(--light-grey); /* Çok hafif bir gri tonu değişken */
}

.product-category-wrapper {
    display: flex;
    align-items: center; /* Öğeleri dikeyde ortala */
    gap: var(--category-gap-desktop); /* Görsel ve içerik arasındaki boşluk değişken */
}

/* Görselin sağda olduğu durum */
.product-category-wrapper.reverse {
    flex-direction: row-reverse; /* Öğelerin sırasını tersine çevir */
}

.product-category-content {
    flex: 1; /* İçeriğin büyümesine izin ver */
}

.product-category-image {
    flex: 1; /* Görselin büyümesine izin ver */
    max-width: var(--category-image-max-width-desktop); /* Görselin maksimum genişliği değişken */
    border-radius: 10px; /* Kenar yuvarlaklığı */
    overflow: hidden; /* Görselin zoom efektinin taşmasını engeller */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Kutu gölgesi */
    /* Flex yönüne göre kenar boşluğunu ayarla */
    margin-right: 0; /* Sıfırlama */
    margin-left: 0; /* Sıfırlama */
}

/* Görsel soldayken sağa boşluk */
.product-category-wrapper:not(.reverse) .product-category-image {
     margin-right: var(--category-image-margin-desktop); /* Değişken kullanıldı */
}

/* Görsel sağdayken sola boşluk */
.product-category-wrapper.reverse .product-category-image {
     margin-left: var(--category-image-margin-desktop); /* Değişken kullanıldı */
}

.product-category-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease; /* Hover geçişi */
}

.product-category-image:hover img {
    transform: scale(1.03); /* Hoverda hafif zoom */
}

/* Bölüm Başlığı (H2 elementi için) */
.section-title {
    font-size: 36px;
    color: var(--heading-color); /* Özel renk değişken */
    margin-bottom: var(--section-title-margin-bottom); /* Başlığın altındaki boşluk değişken */
    font-weight: 700;
    text-transform: uppercase;
    /* Başlık tek başına kullanılıyorsa ortala */
     text-align: center; /* Varsayılan ortalama */
}
/* Başlık flex container içindeyse sola hizala (section-header-flex şimdi sadece başlığı içeriyor, bu stil geçerli olmayabilir) */
.section-header-flex .section-title {
     text-align: center; /* Flex içinde de ortala */
     margin-bottom: 0; /* Flex içinde kendi alt boşluğu olmasın */
}


/* Kategori Açıklaması (P elementi için) */
.category-description {
    color: var(--text-color); /* Metin rengi değişken */
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px; /* Özellik listesi yoksa butonla arasına 30px boşluk */
     text-align: center; /* Varsayılan ortalama */
}

/* Kategori Buton Sarmalayıcı */
.category-button {
    margin-top: 20px;
    text-align: center; /* Varsayılan ortalama */
}

/* Kategori Butonu (A etiketi için) */
.category-button .btn-outline {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: transparent;
    color: var(--primary); /* Değişken kullanıldı */
    border: 2px solid var(--primary); /* Değişken kullanıldı */
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    padding-right: 45px; /* İkon için sağdan boşluk */
}

.category-button .btn-outline:hover {
    background-color: var(--primary); /* Değişken kullanıldı */
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Buton içindeki ikonun stili */
.category-button .btn-outline i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

/* Buton hover durumunda ikon animasyonu */
.category-button .btn-outline:hover i {
    transform: translateX(5px);
}


/* --- Proje Görselleri Bölümü (Swiper Galeri - Tam Genişlik) --- */

.project-gallery-section {
    padding: var(--section-padding-desktop); /* Değişken kullanıldı */
    background-color: var(--light-grey); /* Arka plan rengi değişken */
}

/* Başlık Container (Sadece başlık) */
.section-header-flex {
    display: flex; /* Hala flex kullanabiliriz, başlığı ortalamak veya hizalamak için */
    justify-content: center; /* Başlığı ortala */
    align-items: center;
    margin-bottom: var(--section-title-margin-bottom); /* Bloğun altındaki boşluk */
    /* Flex-wrap ve gap artık gerekmez çünkü yanında buton yok */
}
/* Flex container içindeki başlık */
.section-header-flex .section-title {
    text-align: center; /* Flex içinde de ortala */
    margin-bottom: 0; /* Flex içinde kendi alt boşluğu olmasın */
}

.project-description {
    color: var(--text-color); /* Metin rengi değişken */
    font-size: 16px;
    line-height: 1.7;
    text-align: center; /* Metni ortala */
    margin-bottom: var(--gallery-description-margin-bottom); /* Değişken kullanıldı */
    max-width: 800px; /* Açıklama metninin genişliğini sınırlama */
    margin-left: auto; /* Ortalamak için */
    margin-right: auto; /* Ortalamak için */
}

/* Swiper Ana Sarmalayıcı */
.project-swiper {
    width: 100%; /* Tam genişlik */
    /* Swiper'ın yüksekliği içeriğine (slaytların yüksekliğine) göre otomatik ayarlanacak */
    margin-bottom: 0; /* Boşluk artık project-gallery-bottom'a taşındı */
    margin-top: 0; /* Üstten boşluk yok, section padding'i yeterli */
    position: relative; /* Gerekirse içerideki position absolute elemanlar için */
    overflow: hidden; /* Görselin taşmasını engeller */
    /* Padding eklendi: Üst:0 | Sağ:yatay | Alt:0 | Sol:yatay */
    padding: 0 var(--swiper-container-padding-horizontal-desktop) 0 var(--swiper-container-padding-horizontal-desktop);
    box-sizing: border-box; /* Padding'in genişliğe dahil olmasını sağla */
}

/* Swiper Slide (Şimdi Tekrar A Etiketi) */
.project-image-item.swiper-slide { /* Sınıf adı aynı kalabilir */
    position: relative; /* Overlay için */
    border-radius: var(--gallery-item-border-radius);
    overflow: hidden;
    box-shadow: var(--gallery-item-shadow);
    background-color: #fff;
    transition: transform var(--gallery-transition-duration) ease, box-shadow var(--gallery-transition-duration) ease;
    display: block; /* A etiketini blok yaparak boyut vermemizi sağlar */
    text-decoration: none; /* Link alt çizgisini kaldır */
    cursor: pointer; /* Tıklanabilir olduğunu belirt */
}

/* Hover efektleri */
.project-image-item.swiper-slide:hover {
    transform: var(--gallery-item-transform-hover);
    box-shadow: var(--gallery-item-shadow-hover);
}

/* Aktif Slide Vurgulama */
.project-image-item.swiper-slide.swiper-slide-active {
    transform: scale(var(--active-slide-scale));
    box-shadow: var(--active-slide-shadow);
    z-index: 2;
    position: relative;
}


/* Görsel Stili (Swiper slide içindeki <a> içinde) */
.project-image-item.swiper-slide img {
    display: block;
    width: 100%;
    height: var(--gallery-image-fixed-height);
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

/* Görsel Hover Efekti */
/* img üzerinde hover efekti artık a:hover üzerinden tetiklenir */
.project-image-item.swiper-slide:hover img {
    transform: scale(1.08);
}

/* Görsel Overlay ve İçerik Stilleri */
/* Overlay şimdi tıklanabilir <a> içinde */
.project-item-overlay {
    position: absolute;
    top: 0;
    bottom: auto;
    height: var(--gallery-overlay-height);
    background: var(--gallery-overlay-bg);
    left: 0;
    right: 0;
    display: flex;
    padding: var(--overlay-content-padding); /* Değişken kullanıldı */
    z-index: 1; /* Görselin üzerinde olmasını sağla */
    opacity: 1; /* Başlangıçta tam görünür yap */
    transition: opacity var(--gallery-transition-duration) ease;
    flex-direction: column;
    justify-content: flex-start; /* İçeriği üste hizala */
    align-items: flex-start; /* İçeriği sola hizala */
     /* pointer-events: none; /* Tıklamaya izin verilecek */
}
/* Overlay üzerinde hover (opsiyonel) */
/*
.project-image-item.swiper-slide:hover .project-item-overlay {
    opacity: 0;
}
*/


/* Overlay içindeki içerik sarmalayıcısı */
.project-item-overlay .overlay-content {
    width: 100%;
     /* Flex ayarları eklendi - Başlık ve lokasyon alt alta ve sola hizalı */
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     justify-content: flex-start;
}

/* Proje Başlığı */
.project-item-title {
    color: white;
    font-size: var(--gallery-title-font-size);
    font-weight: 600;
    text-shadow: var(--gallery-title-text-shadow);
    margin-bottom: var(--overlay-item-gap); /* Lokasyon ile arasına boşluk değişken */
    flex-grow: 0;
    flex-shrink: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Proje Lokasyonu */
.project-item-location {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9em;
    font-weight: 400;
    text-shadow: var(--gallery-title-text-shadow);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Yeni Eklendi: Proje Kartı Üzerindeki "Detayları Gör" Butonu Stilleri (KALDIRILDI) */
/*
.project-item-details-button { ... }
.project-image-item.swiper-slide:hover .project-item-details-button { ... }
.project-item-details-button:hover { ... }
.project-item-details-button i { ... }
.project-item-details-button:hover i { ... }
*/


/* --- Pagination Container --- */
/* Bu container Swiper'dan sonra gelir ve sadece pagination'ı içerir */
.project-gallery-bottom {
    margin-top: var(--swiper-pagination-container-margin-top);
    text-align: center;
    padding: 0 var(--swiper-container-padding-horizontal-desktop);
    box-sizing: border-box;
}


/* Swiper Sayfalama (Nokta) Stili */
/* Pagination artik kendi .project-gallery-bottom container'ı içinde */
.project-gallery-bottom .swiper-pagination {
    text-align: center;
    margin-bottom: var(--pagination-margin-bottom); /* Altında bir şey yok */
}

/* Tek bir nokta (bullet) stili */
.project-gallery-bottom .swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-size); /* Boyut değişken */
    height: var(--swiper-pagination-bullet-size); /* Boyut değişken */
    background: var(--swiper-pagination-bullet-inactive-color);
    opacity: var(--swiper-pagination-bullet-inactive-opacity);
    display: inline-block;
    border-radius: 0;
    margin: 0 4px;
    transition: opacity 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

/* Aktif noktanın stili */
.project-gallery-bottom .swiper-pagination-bullet-active {
    background: var(--swiper-pagination-color);
    opacity: 1;
}


/* Tüm Projeleri Görüntüle Buton Container */
/* Bu container pagination container'ından sonra gelir */
.view-all-projects-button-container {
    text-align: center;
    margin-top: var(--pagination-container-button-gap); /* Pagination container'ından sonra boşluk */
    padding: 0 var(--swiper-container-padding-horizontal-desktop);
    box-sizing: border-box;
}

/* Tüm Projeleri Görüntüle Buton Stilleri */
/* Bu buton şimdi .view-all-projects-button-container içinde */
.view-all-projects-button-container .btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    padding-right: 45px;
}
.view-all-projects-button-container .btn-outline:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.view-all-projects-button-container .btn-outline i {
     margin-left: 0;
     transition: transform 0.3s ease;
     position: absolute;
     right: 15px;
     top: 50%;
     transform: translateY(-50%);
}
.view-all-projects-button-container .btn-outline:hover i {
     transform: translateY(-50%) translateX(5px);
}


/* --- Duyarlılık Ayarları --- */

@media (max-width: 992px) {
    /* Genel Bölüm Boşlukları */
    .product-category-section,
    .project-gallery-section {
        padding: var(--section-padding-tablet);
    }

    /* Ürün Kategorileri */
    .product-category-wrapper {
        flex-direction: column;
        gap: var(--category-gap-tablet);
    }

    .product-category-wrapper.reverse {
        flex-direction: column;
    }

    .product-category-content {
        width: 100%;
        flex: none;
    }

    .product-category-image {
        width: 100%;
        flex: none;
        max-width: 100%;
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    /* Kategori başlıkları ve açıklamalar ortalı */
     .product-category-section .section-title,
     .category-description,
     .category-button {
         text-align: center;
     }
     .product-category-section .section-title {
          margin-bottom: var(--section-title-margin-bottom);
     }
     .category-button .btn-outline {
         display: inline-flex;
         align-items: center;
         justify-content: center;
     }


     .banner-title h1 {
        font-size: 42px;
     }

    /* Proje Görselleri - 992px */
     :root {
         --gallery-item-gap: 25px;
         --gallery-image-fixed-height: 250px;
         --gallery-overlay-height: 30%;
         --gallery-title-font-size: 1.1em;
         --gallery-description-margin-bottom: 30px;

         --swiper-pagination-container-margin-top: 25px;
         --pagination-container-button-gap: 20px;
         --swiper-pagination-bullet-size: 9px;

         --overlay-content-padding: 12px;
         --overlay-item-gap: 4px;


         --active-slide-scale: 1.00;
         --active-slide-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);

         /* Swiper Container Padding */
        --swiper-container-padding-horizontal-desktop: 40px;

    }

     /* Başlık Container (Sadece başlık) - 992px */
     .section-header-flex {
         margin-bottom: var(--section-title-margin-bottom);
     }
     .section-header-flex .section-title {
         font-size: 30px;
         text-align: center;
     }


    /* Swiper */
    .project-swiper {
         padding: 0 var(--swiper-container-padding-horizontal-desktop) 0 var(--swiper-container-padding-horizontal-desktop);
    }
    .project-image-item.swiper-slide img {
       height: var(--gallery-image-fixed-height);
    }

    /* Overlay Stili - 992px */
    .project-item-overlay {
        height: var(--gallery-overlay-height);
        padding: var(--overlay-content-padding);
    }
     /* Proje Başlığı - 992px */
     .project-item-title {
         margin-bottom: var(--overlay-item-gap);
     }
     /* Yeni eklenen lokasyon stili - 992px */
    .project-item-location {
        font-size: 0.85em;
    }

    /* Proje Kartı Üzerindeki Detay Butonu - KALDIRILDI */
    /*
    .project-item-details-button { ... }
    .project-image-item.swiper-slide:hover .project-item-details-button { opacity: 0; }
    */


     /* Pagination Container - 992px */
    .project-gallery-bottom {
        margin-top: var(--swiper-pagination-container-margin-top);
         padding: 0 var(--swiper-container-padding-horizontal-desktop);
    }

     /* Pagination bullet - 992px */
     .project-gallery-bottom .swiper-pagination-bullet {
         margin: 0 3px;
     }

     /* Tüm Projeleri Görüntüle Buton Container - 992px */
     .view-all-projects-button-container {
        margin-top: var(--pagination-container-button-gap);
        padding: 0 var(--swiper-container-padding-horizontal-desktop);
        text-align: center;
     }
     .view-all-projects-button-container .btn-outline {
         padding: 10px 25px;
         font-size: 15px;
         padding-right: 40px;
     }
     .view-all-projects-button-container .btn-outline i {
         right: 15px;
     }
}

@media (max-width: 768px) {
    /* Genel Bölüm Boşlukları */
     .product-category-section,
     .project-gallery-section {
         padding: 40px 0;
     }

    /* Ürün Kategorileri */
     .section-title {
         font-size: 26px;
          margin-bottom: var(--section-title-margin-bottom);
     }
     .category-description {
         text-align: center;
     }
     .category-button {
         text-align: center;
     }

  .hero-slider {
    height: 65vh;
    overflow: visible;
  }
    .page-header {
        padding: 40px 0;
    }
    .page-header h1 {
        font-size: 30px;
    }
     .banner-title h1 {
        font-size: 36px;
     }
      .products-banner {
         height: 180px;
      }


    /* Proje Görselleri - 768px */
     :root {
         --gallery-item-gap: 20px;
         --gallery-image-fixed-height: 200px;
          --gallery-overlay-height: 35%;
         --gallery-title-font-size: 1em;
         --gallery-description-margin-bottom: 25px;

         --swiper-pagination-container-margin-top: 20px;
         --pagination-container-button-gap: 15px;
         --swiper-pagination-bullet-size: 8px;

         --overlay-content-padding: 10px;
         --overlay-item-gap: 4px;


         --active-slide-scale: 1.00;
         --active-slide-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);

         /* Swiper Container Padding */
         --swiper-container-padding-horizontal-desktop: 20px;
    }
    /* ... Bölüm başlıkları, açıklamalar aynı kalır ... */

    /* Başlık Container (Sadece başlık) - 768px */
    .section-header-flex {
         margin-bottom: var(--section-title-margin-bottom);
    }
     .section-header-flex .section-title {
         font-size: 26px;
         text-align: center;
     }


     /* Swiper */
    .project-swiper {
         padding: 0 var(--swiper-container-padding-horizontal-desktop) 0 var(--swiper-container-padding-horizontal-desktop);
    }
    .project-image-item.swiper-slide img {
       height: var(--gallery-image-fixed-height);
    }

    /* Overlay Stili - 768px */
    .project-item-overlay {
        height: var(--gallery-overlay-height);
         padding: var(--overlay-content-padding);
    }
     /* Proje Başlığı - 768px */
     .project-item-title {
         margin-bottom: var(--overlay-item-gap);
     }
     /* Yeni eklenen lokasyon stili - 768px */
    .project-item-location {
        font-size: 0.8em;
    }

    /* Proje Kartı Üzerindeki Detay Butonu - KALDIRILDI */


     /* Pagination Container - 768px */
    .project-gallery-bottom {
        margin-top: var(--swiper-pagination-container-margin-top);
         padding: 0 var(--swiper-container-padding-horizontal-desktop);
    }

     /* Pagination bullet - 768px */
     .project-gallery-bottom .swiper-pagination-bullet {
         margin: 0 3px;
     }

     /* Tüm Projeleri Görüntüle Buton Container - 768px */
     .view-all-projects-button-container {
        margin-top: var(--pagination-container-button-gap);
        padding: 0 var(--swiper-container-padding-horizontal-desktop);
        text-align: center;
     }
     .view-all-projects-button-container .btn-outline {
         padding: 8px 20px;
         font-size: 14px;
         padding-right: 35px;
     }
     .view-all-projects-button-container .btn-outline i {
         right: 12px;
     }
}

@media (max-width: 576px) {
     /* Hero Slider - 576px */
     .hero-slider {
         height: 65vh;
         overflow: visible;
     }
     
    .product-category-section,
    .project-gallery-section {
         padding: 30px 0;
     }

    /* Ürün Kategorileri */
     .section-title {
        font-size: 24px;
        margin-bottom: var(--section-title-margin-bottom);
    }
     .category-description {
         text-align: center;
    }
     .category-button {
         text-align: center;
     }

    .page-header {
        padding: 30px 0;
    }
    .page-header h1 {
        font-size: 26px;
    }
    .banner-title h1 {
        font-size: 28px;
     }
    .products-banner {
         height: 150px;
      }
    .banner-title {
         padding-right: 6%;
      }
       /* Ortalanmış butondaki ikon için mobil ayar (Aynı kalıyor) */
     .category-button .btn-outline {
         padding-right: 25px;
         margin-left: auto;
         margin-right: auto;
     }


    /* Proje Görselleri - 576px */
     :root {
         --gallery-item-gap: 10px;
         --gallery-image-fixed-height: 180px;
         --gallery-overlay-height: 40%;
         --gallery-title-font-size: 0.85em;
         --gallery-description-margin-bottom: 20px;

         --swiper-pagination-container-margin-top: 15px;
         --pagination-container-button-gap: 15px;
         --swiper-pagination-bullet-size: 7px;

         --overlay-content-padding: 8px;
         --overlay-item-gap: 3px;


          --active-slide-scale: 1.00;
          --active-slide-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);

          /* Swiper Container Padding */
         --swiper-container-padding-horizontal-desktop: 15px;
    }

     /* Başlık Container (Sadece başlık) - 576px */
     .section-header-flex {
         margin-bottom: var(--section-title-margin-bottom);
     }
     .section-header-flex .section-title {
         font-size: 24px;
         text-align: center;
     }


    .project-description {
        font-size: 14px;
         margin-bottom: var(--gallery-description-margin-bottom);
          max-width: 100%;
    }
    /* Swiper */
    .project-swiper {
         padding: 0 var(--swiper-container-padding-horizontal-desktop) 0 var(--swiper-container-padding-horizontal-desktop);
    }
    .project-image-item.swiper-slide img {
       height: var(--gallery-image-fixed-height);
    }

    /* Overlay Stili - 576px */
    .project-item-overlay {
        height: var(--gallery-overlay-height);
        padding: var(--overlay-content-padding);
    }
     /* Proje Başlığı - 576px */
     .project-item-title {
         margin-bottom: var(--overlay-item-gap);
     }
     /* Yeni eklenen lokasyon stili - 576px */
    .project-item-location {
        font-size: 0.75em;
    }

    /* Proje Kartı Üzerindeki Detay Butonu - KALDIRILDI */


     /* Pagination Container - 576px */
    .project-gallery-bottom {
        margin-top: var(--swiper-pagination-container-margin-top);
         padding: 0 var(--swiper-container-padding-horizontal-desktop);
    }
     /* Pagination bullet - 576px */
     .project-gallery-bottom .swiper-pagination-bullet {
         margin: 0 2px;
     }

     /* Tüm Projeleri Görüntüle Buton Container - 576px */
     .view-all-projects-button-container {
         margin-top: var(--pagination-container-button-gap);
         padding: 0 var(--swiper-container-padding-horizontal-desktop);
         text-align: center;
     }
     .view-all-projects-button-container .btn-outline {
         padding: 6px 15px;
         font-size: 12px;
         padding-right: 25px;
     }
     .view-all-projects-button-container .btn-outline i {
         right: 10px;
         transform: translateY(-50%);
     }
      /* Buton hover durumunda ikon animasyonu - 576px */
    .view-all-projects-button-container .btn-outline:hover i {
         transform: translateY(-50%) translateX(5px);
    }
}

body.menu-open {
    /* Sayfa kaydırmasına izin ver */
    overflow: auto !important;
    position: relative !important;
    width: 100% !important;
    min-height: 100% !important;
    background: none !important;
}

@media (max-width: 991px) {
    .menu-toggle {
        display: block;
        z-index: 9999;
        margin-left: 0;
        position: fixed;
        right: 20px;
        top: 25px;
    }

    #main-header {
        position: fixed;
        width: 100%;
        z-index: 9998;
        background: transparent;
        box-shadow: none;
    }

    .main-menu {
        position: fixed;
        top: 0;
        right: -100%;
        left: auto;
        width: 280px;
        height: 100vh;
        background: transparent;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 9997;
        overflow-y: auto;
        box-shadow: none;
        -webkit-overflow-scrolling: touch;
    }

    .main-menu.open {
        right: 0;
        left: auto;
        background: #fff;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    .main-menu ul {
        flex-direction: column;
        padding: 0;
        margin: 0;
    }

    .main-menu li {
        margin: 0;
        width: 100%;
        position: relative;
    }

    .main-menu li a {
        padding: 15px;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #eee;
        color: #333;
        font-size: 16px;
        display: block;
        position: relative;
        z-index: 9999;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.3s ease;
        -webkit-tap-highlight-color: rgba(0,0,0,0.1);
        touch-action: manipulation;
    }

    .main-menu li a:hover,
    .main-menu li a:active {
        background: #f8f9fa;
        color: var(--primary);
    }

    .dropdown {
        position: static;
        width: 100%;
        background: #f8f9fa;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        display: none;
    }

    body.menu-open:before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: transparent !important;
        z-index: 1040;
    }
}

@media (max-width: 767px) {
    .logo a h1 {
        font-size: 22px;
    }
    
    .header-actions {
        margin-right: 40px;
    }
    
    .main-menu {
        padding-top: 70px;
    }
}

@media (max-width: 576px) {
    .logo a h1 {
        font-size: 20px;
    }
    
    .main-menu li a {
        font-size: 15px;
    }
    .logo img {
    max-height: 90px;
    height: auto;
    width: auto;
}
  .footer-logo {
    text-align: center;
  }

  .footer-logo img {
    margin: 0 auto;
  }
  .footer-social {
    justify-content: center;
  }
}


/* Kültür Taşı sayfası için breadcrumb ile banner arası boşluğu azalt */
.breadcrumb-nav {
    margin-bottom: 0;
    margin-top: 500px;
}

.breadcrumb-nav {
    margin-top: -30px;
    margin-bottom: 20px;
}


.footer-separator {
    margin: 0 10px;
    /* Dilerseniz font-size veya color da ekleyebilirsiniz */
}

.backdrop-filter {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.user-select {
    user-select: none;
    -webkit-user-select: none;
}

body.menu-open .menu-toggle span,
.main-menu.open ~ .menu-toggle span {
    background-color: var(--primary) !important;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.15); /* Hafif karartma, istersen 0.0 yapabilirsin */
    z-index: 9996;
    transition: opacity 0.3s;
}
body.menu-open .menu-overlay {
    display: block;
}

/* Mobil cihazlarda menü açıkken sayfa kaydırmasına izin ver */
@media (max-width: 991px) {
    body.menu-open {
        /* Sayfa kaydırmasına izin ver */
        overflow: auto !important;
        position: relative !important;
        width: 100% !important;
        min-height: 100% !important;
    }
    
    body.menu-open html {
        /* HTML elementinde de kaydırmaya izin ver */
        overflow: auto !important;
        position: relative !important;
        width: 100% !important;
        min-height: 100% !important;
    }
}


/* 1. Küçük telefonlar (iPhone SE, eski Android) */
@media (max-width: 480px) {
  .slide-content {
    top: 75%;
    left: 38%;
    transform: translate(-50%, -70%);
    max-width: 90%;
    padding: 0 5px;
    text-align: center;
  }

  .slide-content h1 {
    font-size: 1.3rem;
  }

  .slide-content p {
    font-size: 0.8rem;
    margin-bottom: 10px;
  }
    .slide-content .btn {
    padding: 5px 10px;
    font-size: 0.7rem;
  }
}

/* 2. Büyük telefonlar ve küçük tabletler */
@media (min-width: 481px) and (max-width: 768px) {
  .slide-content {
    top: 80%;
    left: 35%;
    transform: translate(-50%, -80%);
    max-width: 90%;
    padding: 0 15px;
    text-align: center;
  }

  .slide-content h1 {
    font-size: 1.6rem;
  }

  .slide-content p {
    font-size: 1.2rem;
  }
    .slide-content .btn {
    padding: 12px 28px;
    font-size: 0.95rem;
    border-radius: 8px;
  }
}

/* 3. Tabletler (yatay/dikey) */
@media (min-width: 769px) and (max-width: 1024px) {
  .slide-content {
    top: 70%;
    left: 35%;
    transform: translate(-50%, -60%);
    max-width: 80%;
    padding: 0 30px;
  }

  .slide-content h1 {
    font-size: 1.8rem;
  }

  .slide-content p {
    font-size: 1.05rem;
  }
    .slide-content .btn {
    padding: 14px 36px;
    font-size: 1rem;
    border-radius: 10px;
  }
}