*{margin:0;padding:0;box-sizing:border-box}
body{font-family: 'Poppins', sans-serif; background:#111; color:#fff; overflow-x: hidden;}
.container{width:90%;max-width:1200px;margin:auto}

/* HEADER */
.header{background:#800000; border-bottom:2px solid #D4AF37; position: sticky; top: 0; z-index: 1000;}
.header-inner{display:flex; justify-content:space-between; align-items:center; padding:15px 0}
.logo img{height:120px}
.logo2 img{height:120px;left:%25;}
.phone{background:#D4AF37; padding:8px 15px; border-radius:5px; color:#000; text-decoration:none; font-weight: bold;}


/* DESKTOP MENU */

nav ul{
display:flex;
list-style:none;
}

nav ul li{
margin-left:25px;
}

nav ul li a{
text-decoration:none;
color:white;
font-size:16px;
transition:0.3s;
}

nav ul li a:hover{
color:#00bcd4;
}

/* HAMBURGER */

.menu-toggle{
display:none;
font-size:26px;
cursor:pointer;
}

/* MOBILE MENU */

.mobile-menu{
position:fixed;
top:0;
right:-260px;
width:260px;
height:100%;
background:#111;
padding-top:10px;
transition:0.4s;
z-index:999;
display:flex;
flex-direction:column;
justify-content:center;
}

.mobile-menu ul{
list-style:none;
text-align:center;
}

.mobile-menu ul li{
margin:25px 0;
}

.mobile-menu ul li a{
color:white;
text-decoration:none;
font-size:18px;
}

.mobile-menu.active{
right:0;
}

/* KAPAT BUTONU */

.close-btn{
position:absolute;
bottom:30px;
left:50%;
transform:translateX(-50%);
padding:10px 25px;
background:#00bcd4;
color:white;
border-radius:25px;
cursor:pointer;
font-size:16px;
}


/* OVERLAY */

.overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.4);
display:none;
z-index:998;
}

.overlay.active{
display:block;
}

/* RESPONSIVE */

@media(max-width:1200px){

nav{
display:none;
}

.menu-toggle{
display:block;
}

}

/* Header Buton Grubu */
.header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}


/* Mevcut Ara Butonu (Genişlik ayarı) */
.phone {
    background: #D4AF37;
    padding: 8px 15px;
    border-radius: 5px;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
}

/* Yeni Teklif Al Butonu (Header için) */
.header-btn {
    background: transparent;
    color: #D4AF37;
    border: 1px solid #D4AF37;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s;
    white-space: nowrap;
}

.header-btn:hover {
    background: #D4AF37;
    color: #000;
}

/*** top header ***/

.top-header {
    background-color: #2c3e50; /* Koyu şık bir gri/mavi tonu */
    color: #ffffff;
    padding: 10px 0;
    font-size: 14px;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-header a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-right: 15px;
}

.top-header a:hover {
    color: #f39c12; /* Hover durumunda turuncu/gold tonu */
}

.contact-info i, .social-links i {
    margin-right: 5px;
}

.social-links a {
    margin-left: 15px;
    margin-right: 0;
    font-size: 16px;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .top-header .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .contact-info a {
        display: block;
        margin-bottom: 5px;
    }
}

/*** end top header ***/

/* HERO VIDEO */
.hero{height:100vh; position:relative; overflow:hidden; display: flex; align-items: center; justify-content: center;}
.hero video{position: absolute; width:100%; height:100%; object-fit:cover; filter:brightness(100%)}
.hero-text{position:relative; text-align:center; z-index: 2; padding: 0 20px;}
.hero-text h1{font-size: clamp(2rem, 8vw, 4rem); margin-bottom:15px; text-shadow: 2px 2px 15px rgba(0,0,0,0.5);}
.hero-text p{font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9;}

.btn{background:#D4AF37; color:#000; padding:12px 30px; text-decoration:none; border-radius:5px; display: inline-block; transition: 0.3s; font-weight: bold;}
.btn:hover{background: #fff; transform: translateY(-3px);}

/* Buton Grubu Konteynırı */
.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

/* Mevcut Buton Stilini Koru ve Yeni Stili Ekle */
.btn {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
}

/* Dolgulu Buton (Menüyü Keşfet) */
.btn:not(.btn-outline) {
    background: #D4AF37;
    color: #000;
    border: 2px solid #D4AF37;
}

/* Çerçeveli Buton (Teklif Al) */
.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

/* Hover Efektleri */
.btn:hover {
    transform: translateY(-3px);
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* SERVICES & GRID */
.services{padding:30px 0; text-align:center; background:#1a1a1a}
.service-grid, .menu-grid, .gallery-grid{display:grid; grid-template-columns:repeat(3, 1fr); gap:20px; margin-top:40px}
.service-card, .menu-card{background:#222; padding:30px; border-radius:15px; border: 1px solid #333; transition: 0.3s;}
.service-card:hover{border-color: #D4AF37;}

/* Slider Konteynırı */
.services-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 30px; /* Butonlar için yan boşluğu biraz artırdık */
    margin-top: 40px;
}

/* Kartların Genişlik Ayarı (4 adet için) */
.services-wrapper .service-card {
    /* 4 adet kart için: %100 / 4 = %25 
       Gap (boşluk) payını düştüğümüzde: 
    */
    min-width: calc(25% - 15px); 
    flex-shrink: 0;
    text-align: center;
    border: 1px solid #333;
    background: #222;
    padding: 30px 20px;
    border-radius: 15px;
    transition: 0.4s;
}

/* Tablet Uyumu (3 adet) */
@media(max-width: 1100px) {
    .services-wrapper .service-card {
        min-width: calc(33.333% - 14px);
    }
}

/* Küçük Tablet Uyumu (2 adet) */
@media(max-width: 800px) {
    .services-wrapper .service-card {
        min-width: calc(50% - 10px);
    }
    .services-slider-container {
        padding: 0 40px;
    }
}

/* Mobil Uyumu (1.2 adet - yanındakinin ucu görünür) */
@media(max-width: 500px) {
    .services-wrapper .service-card {
        min-width: 80%;
    }
    .services-slider-container {
        padding: 0 10px;
    }
    .slider-btn {
        display: none; /* Mobilde oklar yerine kaydırma (swipe) daha pratiktir */
    }
}

/* Hizmet Kartları - Yükseklik Odaklı Düzenleme */
.services-wrapper .service-card {
    /* Yükseklik 525px olarak sabitlendi */
    height: 525px; 
    
    /* Genişlik otomatik veya 4'lü dizilime uygun (yaklaşık 350-400px arası idealdir) */
    min-width: 350px; 
    width: 350px;
    
    flex-shrink: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* İçeriği alt kısma yakın toplar, daha modern durur */
    align-items: center;
    text-align: center;
    padding: 40px 25px;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s ease;
    
    /* Arka plan resim ayarları */
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* İçeriklerin (Yazı ve İkon) Görünürlüğü İçin Katman */
.service-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Alttan üste doğru koyulaşan gradyan (Yazılar altta olduğu için) */
    background: linear-gradient(to top, rgba(0,0,0,0.5) 20%, rgba(0,0,0,0.2) 100%);
    z-index: -1;
}

/* Kart İçindeki Elemanların Yerleşimi */
.service-card .service-icon {
    font-size: 3.5rem;
    margin-bottom: auto; /* İkonu en üste iter */
    padding-top: 20px;
}

.service-card h3 {
    color: #D4AF37;
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #eee;
}

/* Hover Efekti */
.service-card:hover {
    transform: translateY(-15px);
    border-color: #D4AF37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

/* Mobil Uyumluluk */
@media (max-width: 600px) {
    .services-wrapper .service-card {
        height: 450px; /* Mobilde çok uzun olmaması için biraz daralttık */
        min-width: 280px;
        width: 280px;
    }
}

.s-dugun { 
    background-image: url('image/dugun.jpg') !important; 
    background-color: red !important; /* Resim gelmezse kırmızı görünmeli */
	background-size: cover;
	background-position: center;
}
.s-kurumsal { 
    background-image: url('image/kurumsal.jpg') !important; 
    background-color: red !important; /* Resim gelmezse kırmızı görünmeli */
	background-size: cover;
	background-position: center;
}
.s-ozel { 
    background-image: url('image/ozel.jpg') !important; 
    background-color: red !important; /* Resim gelmezse kırmızı görünmeli */
	background-size: cover;
	background-position: center;
}
.s-toplu { 
    background-image: url('image/toplu.jpg') !important; 
    background-color: red !important; /* Resim gelmezse kırmızı görünmeli */
	background-size: cover;
	background-position: center;
}
.s-termo { 
    background-image: url('image/termotepsi.jpg') !important; 
    background-color: red !important; /* Resim gelmezse kırmızı görünmeli */
	background-size: cover;
	background-position: center;
}
.s-box { 
    background-image: url('image/thermobox.jpg') !important; 
    background-color: red !important; /* Resim gelmezse kırmızı görünmeli */
	background-size: cover;
	background-position: center;
}

.services-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox için scrollbar gizleme */
    padding-bottom: 20px;
}

.services-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari için scrollbar gizleme */
}

/* Kartların Slider'a Uygun Hale Getirilmesi */
.services-wrapper .service-card {
    min-width: calc(33.333% - 14px); /* Masaüstünde 3 adet görünür */
    flex-shrink: 0;
    text-align: center;
    border: 1px solid #333;
    background: #222;
    transition: 0.4s;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Slider Konteynırı - Relative yapıyoruz ki butonları içine sabitleyebilelim */
.services-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 50px; /* Butonlar için yanlarda boşluk bıraktık */
    margin-top: 40px;
}

.services-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 20px 0;
    width: 100%;
}

.services-wrapper::-webkit-scrollbar { display: none; }

/* Yan Butonların Genel Stili */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid #D4AF37;
    color: #D4AF37;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: #D4AF37;
    color: #000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.prev-btn { left: 0; }
.next-btn { right: 0; }

@media (max-width: 900px) {
    /* 1. Slider Konteynırı Düzeni */
    .services-slider-container {
        display: flex;
        flex-direction: column; /* Kartlar üstte, butonlar altta olsun */
        align-items: center;
        padding: 0;
    }

    /* 2. Kartların Olduğu Alan */
    .services-wrapper {
        width: 100%;
        order: 2; /* İlk sırada kartlar görünsün */
        padding: 0px 0;
    }

    /* 3. Butonları Yan Yana Getiren Kapsayıcı (Grup) */
    /* Eğer HTML'de butonları bir div içine almadıysanız, 
       doğrudan butonları hedefleyerek yan yana dizelim: */
    
    .slider-btn {
        position: static !important; /* Absolute konumlandırmayı tamamen iptal et */
        transform: none !important;
        display: inline-flex !important; /* Yan yana gelmelerini sağlar */
        width: 20px;
        height: 20px;
        margin: 10px 10px; /* Aralarında ve üstlerinde boşluk bırakır */
        order: 2; /* Kartların altına yerleştirir */
        justify-content: center;
        align-items: center;
    }

    /* Okların yan yana dizilmesi için konteynırın flex-wrap ayarı */
    .services-slider-container {
        flex-wrap: wrap; 
        justify-content: center;
    }
}

/* MENU & POPUP */
.menu-card img{width:100%; height:250px; object-fit:cover; border-radius:10px;}
.menu-card h3{margin-top: 15px;}
.menu-popup{position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.9); display:none; align-items:center; justify-content:center; z-index:2000}
.menu-popup-content{background:#222; padding:40px; border-radius:15px; max-width:400px; text-align:center; border: 1px solid #D4AF37;}

/* CALCULATOR */
.calculator{padding:80px 0; background:#111; text-align:center}
.calc-box{max-width:400px; margin:auto; background: #1a1a1a; padding: 30px; border-radius: 15px;}
.calc-box input, .calc-box select{width:100%; padding:12px; margin:10px 0; border-radius: 5px; border: none; background: #333; color: #fff;}
.calc-box button{width: 100%; padding: 12px; background: #D4AF37; border: none; font-weight: bold; cursor: pointer; border-radius: 5px;}

/* Yan Yana Yerleşim Konteynırı */
.feedback-pricing {
    padding: 30px 0;
    background: #1a1a1a; /* Arka plan rengini eşitledik */
}

.dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Yarı yarıya böler */
    gap: 50px;
    align-items: start;
}

/* Yorumlar Bölümü Düzenlemesi */
.testimonials {
    text-align: center;
    background: #222;
    padding: 40px;
    border-radius: 15px;
    height: 100%; /* Hesaplayıcı ile boyu eşitlemek için */
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #333;
}

.testimonial-box {
    min-height: 100px; /* İçeriğin kaymasını engeller */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fiyat Hesaplama Bölümü Düzenlemesi */
.calculator {
    padding: 0; /* İç içe padding'i sıfırladık */
    background: transparent;
}

.calc-box {
    max-width: 100%; /* Grid içinde tam genişlik */
    border: 1px solid #D4AF37;
}

/* Mobil Uyumluluk */
@media(max-width: 900px) {
    .dual-grid {
        grid-template-columns: 1fr; /* Mobilde alt alta gelir */
        gap: 30px;
    }
}

/* MAP */
.map{height:400px; filter: grayscale(1) contrast(1.2) invert(0.9);}
.map iframe{width:100%; height:100%; border:0}

/* WHATSAPP */
.whatsapp{position:fixed; bottom:25px; right:25px; background:#25D366; width:60px; height:60px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:28px; color:#fff; text-decoration:none; z-index: 1001; box-shadow: 0 5px 15px rgba(0,0,0,0.3);}

/* ANIMATION */
.fade-up{opacity:0; transform:translateY(30px); transition:0.8s ease-out}
.fade-up.show{opacity:1; transform:translateY(0)}

@media(max-width:900px){
    .service-grid, .menu-grid, .gallery-grid{grid-template-columns: 1fr 1fr;}
}
@media(max-width:600px){
    .service-grid, .menu-grid, .gallery-grid{grid-template-columns: 1fr;}
    .nav{display: none;} /* Mobil menü iyileştirmesi gerekebilir */
}

/* --- HATA DÜZELTME: Yorumlar --- */
.testimonial {
    display: none; /* Varsayılan olarak gizle */
    padding: 20px;
    font-style: italic;
    font-size: 1.2rem;
    color: #D4AF37;
}
.testimonial.active-testimonial {
    display: block; /* Sadece aktif olanı göster */
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
}

/* --- HATA DÜZELTME: Mobil Menü Çakışması --- */
@media(max-width:600px){
    .service-grid { grid-template-columns: 1fr; }
    /* .nav { display: none; }  <-- BU SATIRI SİLDİM, MOBİL MENÜYÜ BOZUYORDU */
}

/* Diğer CSS kodların gayet iyi durumda. */


/* --- TEKLİF FORMU DÜZENLEME --- */
.quote-section {
    padding: 60px 0;
    background: #111;
}

/* Formun gri kutusu */
.quote-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Sol taraf bilgi, sağ taraf form */
    gap: 40px;
    background: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    align-items: center;
}

.quote-info h2 {
    color: #D4AF37;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.quote-info p {
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.6;
}

.quote-features {
    list-style: none;
    padding: 0;
}

.quote-features li {
    margin-bottom: 12px;
    color: #fff;
    font-size: 0.95rem;
}

/* Form Elemanları */
.quote-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quote-form input, 
.quote-form select, 
.quote-form textarea {
    width: 100%;
    padding: 12px 15px;
    background: #ffffff;
    border: 1px solid #444;
    border-radius: 8px;
    color: #000000;
    font-family: inherit;
    transition: 0.3s;
}

.quote-form input:focus, 
.quote-form select:focus, 
.quote-form textarea:focus {
    border-color: #D4AF37;
    outline: none;
    background: #2a2a2a;
	color:#ffffff;
}

.btn-submit {
    background: #D4AF37;
    color: #000;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #fff;
    transform: translateY(-2px);
}

.foodtekas-services {
    position: relative;
    padding: 100px 0;
    /* Yukarıdaki görseli buraya background olarak ekleyebilirsin */
    background-image: url('image/kartbolumu1.png') !important; 
    background-color: red !important; /* Resim gelmezse kırmızı görünmeli */
	background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
}

/* Görsel üzerine koyu katman (Yazıların okunması için) */
.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    margin-bottom: 50px;
    opacity: 0.9;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px); /* Cam efekti */
    padding: 40px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    border-color: #e67e22; /* Foodtekas turuncusu */
}

.service-card .icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card .line {
    width: 50px;
    height: 3px;
    background: #e67e22;
    margin: 0 auto 20px;
}

.btn-detail {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border: 1px solid #fff;
    font-size: 14px;
    transition: 0.3s;
}

.btn-detail:hover {
    background: #e67e22;
    border-color: #e67e22;
}

.contact-page {
    padding: 80px 0 0;
    background-color: #fcfcfc;
    font-family: 'Poppins', sans-serif;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 42px;
    color: #333;
    margin-bottom: 15px;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 80px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
}

.info-item .icon {
    font-size: 24px;
    background: #fff4eb;
    padding: 15px;
    border-radius: 12px;
    color: #e67e22;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #2c3e50;
}

.info-item p, .info-item a {
    color: #7f8c8d;
    text-decoration: none;
    transition: 0.3s;
}

.contact-form-container {
    flex: 1.5;
    min-width: 300px;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

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

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #f9f9f9;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #e67e22;
    background: #fff;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #e67e22;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #d35400;
}

.map-container {
    line-height: 0;
}

@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }
}

/*--- hakkımızda bölümü burası ---*/

.about-section {
    padding: 80px 0;
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 350px;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0px #e67e22; /* Foodtekas Turuncusu */
}

.about-text {
    flex: 1.5;
    min-width: 350px;
}

.sub-title {
    color: #e67e22;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.feature-item {
    background: #f9f9f9;
    padding: 15px;
    border-left: 4px solid #e67e22;
    margin-bottom: 15px;
    font-size: 15px;
    color: #444;
}

.mission-vision {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.m-box {
    background: #fff4eb;
    padding: 20px;
    border-radius: 15px;
    flex: 1;
}

.m-box h4 {
    color: #e67e22;
    margin-bottom: 10px;
}

.m-box p {
    font-size: 14px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .mission-vision {
        flex-direction: column;
    }
}

/*--- sertifikalar bölümü ---*/

.certificates{
padding:80px 20px;
background:#f7f7f7;
text-align:center;
color:#000000;
}

.container{
max-width:1200px;
margin:auto;
}

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

.certificate-card{
position:relative;
display:block;
background:white;
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
transition:all .4s ease;
transform-style:preserve-3d;
}

.certificate-card:hover{
transform:rotateY(8deg) rotateX(8deg) scale(1.05);
box-shadow:0 25px 60px rgba(0,0,0,0.2);
}

.certificate-card img{
width:100%;
display:block;
}

.certificate-title{
padding:15px;
font-weight:600;
background:white;
}

#lightbox{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.85);
display:none;
align-items:center;
justify-content:center;
z-index:9999;
}

#lightbox img{
max-width:90%;
max-height:90%;
border-radius:10px;
}

/* --- Kart Bölümü --- */

.info-section{
padding:80px 20px;
background:#f7f7f7;
color:#880000;
}

.container{
max-width:1200px;
margin:auto;
}

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

.info-card{
background:white;
padding:40px 30px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:all .3s ease;

display:flex;
flex-direction:column;
align-items:center;
text-align:center;
height:100%;
}

.info-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

.info-icon{
font-size:50px;
margin-bottom:20px;
}

.info-card h3{
margin-bottom:10px;
font-size:22px;
}

.info-card p{
font-size:15px;
line-height:1.6;
margin-bottom:25px;
flex-grow:1;
}

.info-btn{
display:inline-block;
padding:10px 22px;
background:#c62828;
color:white;
text-decoration:none;
border-radius:6px;
font-size:14px;
transition:all .3s ease;
}

.info-btn:hover{
background:#a61d1d;
}

/*** covid ***/

.covid-section{
padding:80px 20px;
background:#f7f7f7;
color:#000000;
}

.section-title{
text-align:center;
font-size:32px;
margin-bottom:10px;
}

.section-desc{
text-align:center;
max-width:800px;
margin:0 auto 40px auto;
line-height:1.6;
}

.covid-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.covid-card{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:.3s;
}

.covid-card:hover{
transform:translateY(-5px);
box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.covid-card h3{
margin-bottom:10px;
font-size:18px;
color:#c62828;
}

.covid-card p{
font-size:14px;
line-height:1.6;
}


/**** ****/

.onsite-production{
padding:80px 20px;
background:#ffffff;
color:#000000;
}

.container{
max-width:1200px;
margin:auto;
}

.section-title{
text-align:center;
font-size:32px;
margin-bottom:10px;
}

.section-desc{
text-align:center;
max-width:800px;
margin:0 auto 40px auto;
line-height:1.6;
}

.onsite-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
}

.onsite-card{
background:#f7f7f7;
padding:25px;
border-radius:10px;
box-shadow:0 8px 20px rgba(0,0,0,0.07);
transition:.3s;

display:flex;
flex-direction:column;
justify-content:flex-start;

min-height:200px;
}

.onsite-card:hover{
transform:translateY(-5px);
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.onsite-card h3{
margin-bottom:10px;
color:#c62828;
min-height:40px;
}

.onsite-card p{
line-height:1.6;
flex-grow:1;
}

.onsite-btn-area{
text-align:center;
margin-top:40px;
}

.onsite-btn{
display:inline-block;
padding:12px 28px;
background:#c62828;
color:white;
text-decoration:none;
border-radius:6px;
transition:.3s;
}

.onsite-btn:hover{
background:#a61d1d;
}

/**** ****/

/* --- FOOTER TASARIMI --- */
.footer {
    background: #0a0a0a;
    padding: 60px 0 20px;
    border-top: 2px solid #D4AF37;
    color: #ccc;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 80px;
    margin-bottom: 20px;
}

.footer h4 {
    color: #D4AF37;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a, .footer-contact a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover, .footer-contact a:hover {
    color: #D4AF37;
    padding-left: 5px;
}

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

.footer-socials a {
    border: 1px solid #D4AF37;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #D4AF37;
}

.footer-socials a:hover {
    background: #D4AF37;
    color: #000;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #222;
    font-size: 0.8rem;
}

/* Footer Mobil Uyumluluk */
@media(max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 500px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-socials {
        justify-content: center;
    }
}

/* Food Tekaş Hakkımızda Bölümü */
.ft-about-section {
    padding: 80px 0;
    background-color: #ffffff; /* Temiz bir görünüm için beyaz arka plan */
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
}

.ft-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.ft-content-wrapper {
    text-align: center;
}

.ft-main-title {
    color: #1a1a1a; /* Koyu gri/siyah */
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

/* Başlık altındaki altın renkli çizgi */
.ft-main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #d4af37; /* Gold / Altın rengi */
}

.ft-highlight {
    font-size: 20px;
    color: #d4af37; /* Öne çıkan cümle için altın rengi */
    font-weight: 600;
    margin-bottom: 20px;
}

.ft-description p {
    color: #555;
    margin-bottom: 20px;
    font-size: 17px;
}

.ft-footer-text {
    border-top: 1px solid #eee;
    padding-top: 20px;
    font-style: italic;
}

.ft-cta-button {
    display: inline-block;
    background-color: #1a1a1a;
    color: #d4af37; /* Siyah üzerine altın yazı */
    padding: 12px 35px;
    border: 2px solid #d4af37;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-transform: uppercase;
}

.ft-cta-button:hover {
    background-color: #d4af37;
    color: #fff;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .ft-about-section {
        padding: 50px 0;
    }
    .ft-main-title {
        font-size: 26px;
    }
    .ft-description p {
        font-size: 16px;
    }
}

.ft-combined-section { padding: 60px 0; background-color: #fff; font-family: 'Segoe UI', sans-serif; }
.ft-container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

/* İstatistik Kartları */
.ft-stats-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 20px; 
    margin-bottom: 50px; 
}
.ft-stat-card { 
    text-align: center; 
    padding: 30px; 
    border-radius: 10px; 
    background: #1a1a1a; 
    color: #fff; 
    transition: 0.3s;
}
.ft-stat-card:hover { transform: translateY(-5px); border: 1px solid #d4af37; }
.ft-stat-icon { font-size: 40px; display: block; margin-bottom: 15px; }
.ft-stat-card h3 { color: #d4af37; font-size: 18px; margin-bottom: 10px; }
.ft-stat-card p { font-size: 14px; color: #ccc; line-height: 1.4; }

.ft-divider { border: 0; height: 1px; background: #eee; margin: 40px 0; }

/* SSS Tasarımı */
.ft-section-title { text-align: center; margin-bottom: 30px; font-size: 28px; color: #1a1a1a; }
.ft-accordion-item { border: 1px solid #eee; margin-bottom: 10px; border-radius: 5px; }
.ft-accordion-header { 
    width: 100%; padding: 18px; text-align: left; background: #fdfdfd; 
    border: none; font-size: 17px; font-weight: 600; cursor: pointer;
    display: flex; justify-content: space-between; color: #333;
}
.ft-accordion-header:hover { color: #d4af37; }
.ft-accordion-body { padding: 0 18px; max-height: 0; overflow: hidden; transition: 0.3s ease-out; background: #fff; }
.ft-accordion-body p { padding: 15px 0; color: #666; border-top: 1px solid #f9f9f9; }

/* Aktif Soru */
.active .ft-accordion-body { max-height: 200px; }
.active .arrow { transform: rotate(180deg); color: #d4af37; }


/* Genel Bölüm Ayarları */
.ft-services-section {
    padding: 80px 0;
    background-color: #1a1a1a; /* Siyah Arka Plan */
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.ft-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Başlık Grubu */
.ft-section-title {
    text-align: center;
    font-size: 36px;
    color: #d4af37; /* Altın Rengi */
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ft-section-subtitle {
    text-align: center;
    color: #ccc;
    margin-bottom: 50px;
    font-size: 18px;
}

/* Hizmet Kartları Grid Yapısı */
.ft-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Hizmet Kartı Tasarımı */
.ft-service-card {
    background: #2a2a2a; /* Koyu Gri/Siyah kart rengi */
    padding: 40px 30px;
    border-radius: 15px;
    border-bottom: 4px solid #800000; /* Alt Kısım Bordo Vurgu */
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ft-service-card:hover {
    transform: translateY(-10px);
    background: #333;
    border-bottom: 4px solid #d4af37; /* Hoverda Altın Rengine Dönüş */
}

/* İkon Tasarımı */
.ft-service-icon {
    font-size: 45px;
    margin-bottom: 20px;
    display: inline-block;
    color: #d4af37;
}

/* Kart Başlıkları */
.ft-service-card h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Kart Metinleri */
.ft-service-card p {
    color: #bbb;
    font-size: 15px;
    line-height: 1.6;
}

/* Kartın Köşesine Küçük Bordo Detay */
.ft-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #800000 50%, transparent 50%);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .ft-section-title { font-size: 28px; }
    .ft-services-grid { grid-template-columns: 1fr; }
}

/* Food Tekaş Teklif Bölümü Stilleri */
.ft-cta-section {
    padding: 100px 0;
    background-color: #1a1a1a; /* Siyah Arka Plan */
    font-family: 'Poppins', sans-serif;
}

.ft-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ft-cta-card {
    background: #ffffff; /* Kontrast için beyaz kart */
    border-left: 10px solid #800000; /* Sol taraf Bordo detay */
    border-right: 10px solid #d4af37; /* Sağ taraf Altın detay */
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.ft-cta-main-text {
    color: #1a1a1a; /* Siyah */
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.ft-cta-sub-text {
    color: #800000; /* Bordo */
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 40px;
}

/* Buton Grubu */
.ft-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.ft-btn {
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: inline-block;
}

/* Altın Buton */
.ft-btn-gold {
    background-color: #d4af37;
    color: #fff;
}
.ft-btn-gold:hover {
    background-color: #b8962d;
    transform: translateY(-3px);
}

/* Bordo Buton */
.ft-btn-bordo {
    background-color: #800000;
    color: #fff;
}
.ft-btn-bordo:hover {
    background-color: #600000;
    transform: translateY(-3px);
}

/* Siyah Buton */
.ft-btn-dark {
    background-color: #1a1a1a;
    color: #d4af37;
}
.ft-btn-dark:hover {
    background-color: #000;
    color: #fff;
}

/* Çerçeveli Buton */
.ft-btn-outline {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #d4af37;
}
.ft-btn-outline:hover {
    background-color: #d4af37;
    color: #fff;
}

/* Mobil Ekran Ayarları */
@media (max-width: 768px) {
    .ft-cta-main-text { font-size: 24px; }
    .ft-cta-sub-text { font-size: 18px; }
    .ft-cta-buttons { flex-direction: column; }
    .ft-btn { width: 100%; text-align: center; }
}

/* Neden Biz Bölümü Stilleri */
.ft-advantages-section {
    padding: 100px 0;
    background-color: #fcfcfc; /* Ferah bir görünüm için çok açık gri */
    font-family: 'Poppins', sans-serif;
}

.ft-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.ft-title {
    color: #1a1a1a; /* Siyah */
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.ft-gold-divider {
    width: 80px;
    height: 4px;
    background-color: #d4af37; /* Altın Rengi */
    margin: 0 auto;
    border-radius: 2px;
}

/* Grid Yapısı */
.ft-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

/* Kart Tasarımı */
.ft-advantage-item {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    border-top: 5px solid #800000; /* Bordo Üst Çizgi */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: left;
}

.ft-advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(128, 0, 0, 0.15); /* Bordo gölge efekti */
}

/* İkon Tasarımı */
.ft-advantage-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: inline-block;
}

/* Başlık ve Metin */
.ft-advantage-item h3 {
    color: #800000; /* Bordo Başlık */
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.ft-advantage-item p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .ft-advantages-grid {
        grid-template-columns: 1fr;
    }
    .ft-title {
        font-size: 28px;
    }
}