/* Temel Ayarlar */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }
body { background-color: #fcfcfc; color: #333; line-height: 1.6;  }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Navigasyon */
.navbar { background: #fff; height: 80px; display: flex; align-items: center; box-shadow: 0 2px 10px rgba(0,0,0,0.1); sticky: top; z-index: 1000; }
.navbar .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo { font-size: 24px; font-weight: bold; text-decoration: none; color: #222; letter-spacing: 2px; }
.logo span { color: #8d775f; }
.nav-links { display: flex; list-style: none; }
.nav-links li { margin-left: 30px; }
.nav-links a { text-decoration: none; color: #555; font-weight: 500; transition: 0.3s; }
.nav-links a:hover, .nav-links a.active { color: #8d775f; }
.nav-links .nav-btn {
    background-color: #95243e;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 5px;
    transition: 0.3s background;
}

/* Hero */
.hero { 
    height: 80vh; 
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1558273109-60434829cf94?q=80&w=1500'); 
    background-size: cover; 
    background-position: center;
    display: flex; align-items: center; justify-content: center; text-align: center; color: white;
}
.hero-content h1 { font-size: 3rem; margin-bottom: 20px; }
.btn { padding: 12px 30px; background: #8d775f; color: white; text-decoration: none; border-radius: 5px; }

/* Ürün Grid Yapısı */
.products { padding: 50px 0; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.product-card { background: white; padding: 15px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; }
.product-card:hover { transform: translateY(-5px); }
.product-card img { width: 100%; height: 250px; object-fit: cover; border-radius: 5px; }

/* Responsive Menü (Mobil) */
.hamburger { display: none; font-size: 24px; cursor: pointer; }

@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-links {
        position: absolute; top: 80px; right: -100%; width: 100%; height: 100vh;
        background: #fff; flex-direction: column; align-items: center; padding-top: 50px;
        transition: 0.5s;
    }
    .nav-links.active { right: 0; }
    .nav-links li { margin: 20px 0; }
    .hero-content h1 { font-size: 2rem; }
}

.hero { 
    position: relative;
    height: 80vh; 
    display: flex; align-items: center; justify-content: center; text-align: center; color: white;
    overflow: hidden; /* Dışarı taşan resimleri gizler */
}
.hero-slider {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
}
.slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background-size: cover; background-position: center; 
    opacity: 0; transition: opacity 1s ease-in-out;
    z-index: 1;
    
}
.slide.active { opacity: 1; }

/* Senin İçeriğin (Yazıların okunabilirliğini artırdık) */
.hero-content { position: relative; z-index: 10; padding: 0 20px; }
.hero-content h1 { font-size: 3rem; margin-bottom: 20px; text-shadow: 2px 2px 5px rgba(0,0,0,0.5); }
.hero-content p { font-size: 1.2rem; text-shadow: 1px 1px 3px rgba(0,0,0,0.5); }
.btn { display: inline-block; padding: 12px 30px; background: #8d775f; color: white; text-decoration: none; border-radius: 5px; transition: 0.3s; }
.btn:hover { background: #705d49; }

/* Slider Okları */
.slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(59, 53, 53, 0.923); color: white; border: none; 
    border-radius: 50%;
    font-size: 2rem; padding: 8px 18px; cursor: pointer; z-index: 10; transition: 0.3s;
}
.slider-btn:hover { background: rgba(141, 119, 95, 0.8); }
.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }

/* Ürün Grid Yapısı */
.products { padding: 50px 0; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.product-card { background: white; padding: 15px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; }
.product-card:hover { transform: translateY(-5px); }
.product-card img { width: 100%; height: 250px; object-fit: cover; border-radius: 5px; }

/* Responsive Menü ve İçerik (Mobil) */
.hamburger { display: none; font-size: 24px; cursor: pointer; }

/* --- Teklif Sayfası Tasarımı --- */
.quote-section {
    padding: 60px 20px;
}
.quote-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
}
.quote-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #222;
}
.quote-header p {
    color: #666;
    font-size: 1.1rem;
}
.quote-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
    font-size: 0.95rem;
}
.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s border-color;
    background-color: #fafafa;
}
.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #8d775f;
    background-color: #fff;
}
.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #8d775f;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}
.btn-submit:hover {
    background-color: #705d49;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-links {
        position: absolute; top: 80px; right: -100%; width: 100%; height: 100vh;
        background: #fff; flex-direction: column; align-items: center; padding-top: 50px;
        transition: 0.5s;
    }
    .nav-links.active { right: 0; }
    .nav-links li { margin: 20px 0; }
    .hero-content h1 { font-size: 2rem; }
    .slider-btn { font-size: 1.5rem; padding: 5px 15px; }
}

.site-footer {
    background-color: #ffffff;
    padding: 60px 0 40px 0;
    color: #555;
    font-family: 'Segoe UI', sans-serif;
}

/* Üst Kısım: 4'lü Özellikler Kutusu */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.feature-box {
    background-color: #e6e6e6; /* Görseldeki açık gri tonu */
    padding: 35px 20px;
    text-align: center;
    border-radius: 3px;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px); /* Üzerine gelince hafif yukarı kalkar */
}

.feature-box h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-box p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Alt Kısım: 3'lü Kurumsal Sütunlar */
.footer-bottom-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr; /* 1. sütun geniş, 2. dar, 3. orta */
    gap: 50px;
}

.widget-title {
    color: #888; /* Görseldeki gri başlık rengi */
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd; /* Alt çizgi */
    font-weight: 600;
}

.footer-widget p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* Link Listesi Ayarları */
.footer-links {
    list-style: none;
    padding-left: 20px;
}

.footer-links li {
    margin-bottom: 12px;
    position: relative;
}

.footer-links li::before {
    content: "•";
    color: #777;
    position: absolute;
    left: -15px;
    font-size: 1.2rem;
    line-height: 1;
}

.footer-links a {
    text-decoration: none;
    color: #777;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #8d775f; /* Hover efekti */
}

/* İletişim Listesi Ayarları */
.contact-info-list {
    list-style: none;
}

.contact-info-list li {
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.5;
    color: #555;
}

.contact-info-list strong {
    color: #333;
}

/* Sosyal Medya İkonları */
.social-icons {
    margin-top: 20px;
}

.social-icons a {
    display: inline-block;
    margin-right: 12px;
    color: #888; /* Görseldeki ikon rengi */
    font-size: 1.5rem;
    transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
    color: #8d775f;
    transform: scale(1.1);
}

.footer-copyright {
    background-color: #1a1a1a; 
    border-top: 5px solid #333;
    position: relative;
    border-top: 5px solid #333; 
    margin-top: auto !important;
  
}

.copyright-container {
    display: flex;
    justify-content: center; /* Yazıyı tam olarak merkeze alır */
    align-items: center;
    position: relative; /* Ok butonunu sabitlemek için gerekli */
    
}

.copyright-container p {
    color: #fff;
    font-size: 0.95rem;
    margin: 2;
    text-align: center;
}

.product-carousel-section {
    padding: 60px 20px;
    background-color: #fff;
    overflow: hidden; /* Dışarı taşan ürünleri gizler */
}

/* Üst Başlık ve Oklar */
.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 15px;
    margin-bottom: 30px;
    position: relative;
}

.carousel-title {
    font-size: 2rem;
    color: #333;
    font-weight: bold;
    position: relative;
    margin: 0;
}

/* Başlığın altındaki hardal sarısı çizgi */
.carousel-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -16px; /* Gri çizginin tam üstüne oturtur */
    width: 100%;
    height: 3px;
    background-color: #c4a265; /* Görseldeki hardal rengi */
}

.carousel-nav button {
    background: #fff;
    border: 1px solid #ddd;
    color: #555;
    width: 40px;
    height: 40px;
    border-radius: 50%; /* Yuvarlak buton */
    font-size: 1rem;
    cursor: pointer;
    margin-left: 10px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav button:hover {
    border-color: #c4a265;
    color: #c4a265;
}

/* Kaydırma Pisti ve Ürün Kartları */
.carousel-wrapper {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 20px; /* Ürünler arası boşluk */
    transition: transform 0.4s ease-in-out;
}

.carousel-item {
    flex: 0 0 calc(25% - 15px); /* Masaüstünde yan yana 4 ürün */
    background-color: #fcfcfc;
    border: 1px solid #f0f0f0;
    padding-bottom: 20px;
    transition: 0.3s;
}

.carousel-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.item-img-box {
    background-color: #f5f5f5; /* Resmin arkasındaki açık gri ton */
    padding: 20px;
    text-align: center;
    margin-bottom: 15px;
}

.item-img-box img {
    max-width: 100%;
    height: 200px;
    object-fit: contain; /* Resmin orantısını bozmadan sığdırır */
}

.item-info {
    padding: 0 20px;
}

.item-info h3 {
    font-size: 1.2rem;
    color: #222;
    margin-bottom: 5px;
}

.item-info a {
    text-decoration: none;
    color: #888;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}

.item-info a:hover {
    color: #c4a265;
}

.why-us-section {
    background-color: #1f1f1f; /* Görseldeki koyu antrasit arka plan */
    color: #fff;
    padding: 80px 20px;
}

.why-us-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* İçeriği merkeze ortalar */
}

/* Üst Başlık ve Açıklama Metni */
.why-us-header {
    max-width: 900px; /* Yazının çok uzamasını engeller, okumayı kolaylaştırır */
    text-align: center;
    margin-bottom: 60px;
}

.why-us-header h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: bold;
    color: #fff;
}

.why-us-header p {
    font-size: 1rem;
    color: #cccccc; /* Göz yormayan açık gri tonu */
    line-height: 1.8;
}

/* 4'lü Özellik Kutuları (Grid) */
.why-us-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Yan yana 2 kutu (2x2 düzeni) */
    gap: 40px 60px; /* Kutular arası yatay ve dikey boşluk */
    max-width: 1000px;
    width: 100%;
}

.why-feature-box {
    display: flex;
    align-items: flex-start; /* İkon ve yazıyı üstten hizalar */
}

.why-feature-box i {
    color: #c4a265; /* Görseldeki hardal/altın sarısı ikon rengi */
    font-size: 2rem;
    margin-right: 20px;
    margin-top: 5px; /* Yazı ile hizalanması için ince ayar */
}

.why-feature-text h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #fff;
}

.why-feature-text p {
    font-size: 0.95rem;
    color: #a6a6a6;
    line-height: 1.6;
}

/* =========================================
   İLETİŞİM SAYFASI BAŞLIK ALANI
========================================= */
.contact-page-header {
    background-color: #f7f7f7; /* Açık gri arka plan */
    /* Sağ tarafa görseldeki gibi flu bir takım elbiseli resim eklemek istersen alttaki linki kendi bilgisayarındaki resimle değiştirebilirsin: */
    /* background-image: url('images/iletisim-bg.jpg'); */ 
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 80px 20px;
    text-align: center;
    border-bottom: 1px solid #eaeaea;
}

.contact-header-content h1 {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
}

.breadcrumb {
    font-size: 1.1rem;
    color: #777;
}

.breadcrumb a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #c4a265;
}

.breadcrumb .divider {
    margin: 0 10px;
    color: #ccc;
}

.breadcrumb .current {
    color: #c4a265; /* Görseldeki hardal/altın sarısı */
}

/* =========================================
   İLETİŞİM BİLGİ KARTLARI
========================================= */
.contact-info-section {
    padding: 80px 20px;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 eşit sütun */
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-card {
    background: #fff;
    padding: 50px 30px;
    text-align: center;
    border: 1px solid #f9f9f9;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); /* Görseldeki yumuşak kutu gölgesi */
    border-radius: 3px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Kutu üzerine gelince hafifçe yukarı kalkma efekti */
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-card .icon-wrapper {
    margin-bottom: 25px;
}

.contact-card .icon-wrapper i {
    font-size: 3rem;
    color: #c4a265; /* Görseldeki ikon rengi */
}

.contact-card h3 {
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Mobil Cihazlar İçin Görünüm (Responsive) */
@media (max-width: 992px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablette yan yana 2 kutu */
    }
}

@media (max-width: 768px) {
    .contact-page-header {
        padding: 50px 20px;
    }
    .contact-header-content h1 {
        font-size: 2.2rem;
    }
    .contact-cards-grid {
        grid-template-columns: 1fr; /* Mobilde hepsi alt alta sıralanır */
    }
}

/* =========================================
   BİZ KİMİZ ? (HAKKIMIZDA) ALANI
========================================= */
.about-us-section {
    padding: 80px 20px;
    background-color: #fff; /* Görseldeki gibi sade beyaz arka plan */
    
}

.about-top-content {
    margin-bottom: 60px;
    text-align: left;
}

.about-us-section h2 {
    font-size: 2.2rem;
    color: #222;
    margin-bottom: 20px;
    font-weight: 700;
    
}

/* Yazıların okunabilirliğini artırmak için satır boşluğu (line-height) ayarlandı */
.about-us-section p {
    font-size: 1.05rem;
    color: #555; /* Göz yormayan koyu gri */
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify; /* Görseldeki gibi metnin sağ ve sol kenarlara düz oturmasını sağlar */
    text-align: left;
    
}

/* Misyon ve Vizyon Alanı (Yan Yana) */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 eşit sütun */
    gap: 60px; /* Misyon ve Vizyon arasındaki boşluk */
    text-align: left;
}

.mv-box h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.mv-box p {
    margin-bottom: 0; /* Altındaki ekstra boşluğu temizler */
    text-align: left;
}
@media (max-width: 768px) {
    .about-us-section {
        padding: 50px 20px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr; /* Mobilde Misyon üstte, Vizyon altta durur */
        gap: 40px;
    }
    
    .about-us-section h2 {
        font-size: 1.8rem;
    }
    
    .about-us-section p {
        text-align: left; /* Mobilde yaslama yapmak bazen kelime aralarını çok açar, sola yaslamak daha iyidir */
    }
}