/* ========== F&D OFİS - PREMIUM KURUMSAL TEMA ========== */
/* Renkler: Küf Yeşili + Fildişi + Toz Gri - DOĞAL & PREMIUM */

/* ========== TEMEL AYARLAR ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #3A4A4A; /* Koyu küf yeşili ton */
    background: #FFFCF8; /* Fildişi - sıcak beyaz */
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== HEADER - KÜF YEŞİLİ ========== */
header {
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(121, 134, 113, 0.06);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #E8EDE5;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}



nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

nav ul li a {
    text-decoration: none;
    color: #5A6B5A;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    transition: all 0.2s;
    position: relative;
    letter-spacing: 0.2px;
}

nav ul li a:hover {
    color: #7C8F7C;
}

nav ul li a.active {
    color: #7C8F7C;
    font-weight: 600;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #C1D0BE; /* Açık küf yeşili */
    transition: width 0.25s;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

/* ========== HERO BANNER ========== */
/* ========== HERO BANNER (PROFESYONEL) ========== */
.hero {
    background-image: url('../images/loris.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
    overflow: hidden;

    height: 65vh; /* TAM EKRAN DEĞİL */
    min-height: 420px;

    display: flex;
    align-items: center;

    text-align: left; /* ORTADAN SOLA */
    margin-top: 0;
    border-bottom: 1px solid #E8EDE5;
}

/* Hafif overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.45) 0%,
        rgba(0,0,0,0.25) 40%,
        rgba(0,0,0,0.05) 100%
    );
}

/* İçerik */
.hero .container {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

/* Başlık */
.hero h1 {
    font-size: 2.6rem;
    margin-bottom: 16px;
    font-weight: 600;
    color: #ffffff;
}

/* Açıklama */
.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* Butonlar */
.hero-buttons {
    display: flex;
    gap: 14px;
}

/* Ana buton */
.hero .btn {
    background: #7C8F7C;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 0.9rem;
    border: none;
}

.hero .btn:hover {
    background: #6A7B6A;
    transform: translateY(-2px);
}

/* İkincil buton (çok daha şık) */
.hero .btn.secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.6);
    color: #ffffff;
}

.hero .btn.secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* ========== ÜRÜNLER ANA SAYFA ========== */
.urunler-anasayfa {
    padding: 100px 0;
    background: #FFFFFF;
}

.urunler-anasayfa h2 {
    text-align: center;
    font-size: 2.3rem;
    color: #4A5A4A;
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.section-subtitle {
    text-align: center;
    color: #7C8C7C;
    margin-bottom: 60px;
    font-size: 1.15rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 350;
}

/* ÜRÜN GRID */
.urun-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 50px;
}

.urun-kart {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(121, 134, 113, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #EDF1EA;
    display: flex;
    flex-direction: column;
}

.urun-kart:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 32px rgba(121, 134, 113, 0.08);
    border-color: #C1D0BE;
}

.urun-resim {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #F5F7F3;
}

.urun-resim img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.urun-kart:hover .urun-resim img {
    transform: scale(1.03);
}

.urun-bilgi {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.urun-bilgi h3 {
    font-size: 1.2rem;
    color: #4A5A4A;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.3;
}

.urun-aciklama {
    color: #6F7E6F;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 18px;
    flex: 1;
}

.urun-ozellikler {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.urun-ozellikler span {
    background: #F5F7F3;
    padding: 6px 12px;
    border-radius: 30px;
    color: #5A6B5A;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.urun-ozellikler i {
    color: #9AAB9A;
}

.urun-fiyat {
    margin: 12px 0;
    padding: 12px 0;
    border-top: 1px solid #EDF1EA;
    border-bottom: 1px solid #EDF1EA;
}

.aktif-fiyat {
    font-size: 1.5rem;
    color: #4A5A4A;
    font-weight: 600;
}

.eski-fiyat {
    font-size: 0.95rem;
    color: #A5B4A5;
    text-decoration: line-through;
    margin-left: 12px;
}

.urun-aksiyonlar {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.detay-btn {
    flex: 1;
    padding: 12px;
    background: transparent;
    color: #5A6B5A;
    text-decoration: none;
    text-align: center;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #C1D0BE;
}

.detay-btn:hover {
    background: #F1F5EF;
    border-color: #7C8F7C;
    color: #4A5A4A;
}

.whatsapp-btn {
    flex: 1;
    padding: 12px;
    background: #25D366;
    color: #FFFFFF;
    border: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 211, 102, 0.15);
}

.text-center {
    text-align: center;
    margin-top: 48px;
}

/* ========== PDF GÖRÜNTÜLEYİCİ ========== */
.pdf-viewer {
    padding: 80px 0;
    background: #F9FBF8;
    border-top: 1px solid #EDF1EA;
    border-bottom: 1px solid #EDF1EA;
}

.pdf-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 20px;
}

.pdf-header h2 {
    font-size: 2rem;
    color: #4A5A4A;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.pdf-header h2 i {
    color: #9AAB9A;
}

.pdf-container {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(121, 134, 113, 0.04);
    margin-bottom: 30px;
    border: 1px solid #EDF1EA;
}

.pdf-container iframe {
    width: 100%;
    height: 600px;
    border: none;
}

/* PDF TOOLS */
.pdf-tools {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #EDF1EA;
    flex-wrap: wrap;
    gap: 20px;
}

.zoom-controls {
    display: flex;
    gap: 10px;
}

.zoom-btn {
    padding: 12px 22px;
    background: #FFFFFF;
    color: #5A6B5A;
    border: 1px solid #D8E0D5;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.zoom-btn:hover {
    background: #F1F5EF;
    border-color: #7C8F7C;
}

.zoom-btn.reset {
    background: #F5F7F3;
}

.zoom-btn.reset:hover {
    background: #E8EDE5;
}

.pdf-stats p {
    color: #6F7E6F;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pdf-stats i {
    color: #9AAB9A;
}

.pdf-actions {
    display: flex;
    gap: 15px;
}

.download-btn, .fullscreen-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    text-decoration: none;
    font-size: 0.95rem;
}

.download-btn {
    background: #7C8F7C;
    color: #FFFFFF;
}

.download-btn:hover {
    background: #6A7B6A;
    transform: translateY(-2px);
}

.fullscreen-btn {
    background: transparent;
    color: #5A6B5A;
    border: 1px solid #D8E0D5;
}

.fullscreen-btn:hover {
    background: #F1F5EF;
    border-color: #7C8F7C;
}

/* ========== WHATSAPP SİPARİŞ ========== */
.whatsapp-siparis {
    padding: 80px 0;
    background: #F5F7F3;
}

.whatsapp-box {
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(121, 134, 113, 0.04);
    border: 1px solid #EDF1EA;
}

.whatsapp-icon {
    font-size: 5.5rem;
    color: #25D366;
    background: rgba(37, 211, 102, 0.05);
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.whatsapp-content {
    flex: 1;
}

.whatsapp-content h3 {
    font-size: 1.9rem;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #4A5A4A;
    font-weight: 600;
}

.whatsapp-content h3 i {
    color: #25D366;
}

.whatsapp-content p {
    font-size: 1.1rem;
    margin-bottom: 28px;
    color: #6F7E6F;
    line-height: 1.6;
}

.whatsapp-features {
    display: flex;
    gap: 28px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    flex: 1;
    min-width: 130px;
}

.feature i {
    font-size: 2.2rem;
    color: #9AAB9A;
    background: #F5F7F3;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #5A6B5A;
}

.whatsapp-big-btn {
    display: inline-block;
    background: #25D366;
    color: #FFFFFF;
    padding: 18px 45px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    border: 1px solid transparent;
}

.whatsapp-big-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.2);
}

.whatsapp-note {
    font-size: 1rem;
    color: #6F7E6F;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-note i {
    color: #9AAB9A;
}

/* ========== FOOTER ========== */
footer {
    background: #F9FBF8;
    color: #4A5A4A;
    padding: 70px 0 30px;
    position: relative;
    border-top: 1px solid #E8EDE5;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 18px;
}

.footer-logo h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #4A5A4A;
    font-weight: 600;
}

.footer-logo p {
    color: #7C8C7C;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-info h3,
.footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 22px;
    color: #4A5A4A;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
}

.footer-info h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #C1D0BE;
}

.footer-info p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #6A7B6A;
    line-height: 1.6;
}

.footer-info i {
    color: #9AAB9A;
    width: 20px;
    font-size: 1rem;
}

.social-icons {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #F1F5EF;
    border-radius: 50%;
    color: #5A6B5A;
    font-size: 1.1rem;
    transition: all 0.2s;
    border: 1px solid #E0E7DE;
    text-decoration: none;
}

.social-icons a:hover {
    background: #7C8F7C;
    color: #FFFFFF;
    transform: translateY(-3px);
    border-color: #7C8F7C;
}

.siparis-not {
    background: #F1F5EF;
    padding: 14px 18px;
    border-radius: 40px;
    border-left: none;
}

.siparis-not p {
    margin: 0;
    font-size: 0.85rem;
    color: #5A6B5A;
    display: flex;
    align-items: center;
    gap: 8px;
}

.siparis-not i {
    color: #9AAB9A;
}

.footer-bottom {
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid #E8EDE5;
    color: #7C8C7C;
    font-size: 0.85rem;
}

/* ========== WHATSAPP SABİT BUTON ========== */
.whatsapp-sabit {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-sabit a {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: #FFFFFF;
    padding: 14px 26px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.2);
    transition: all 0.25s;
    border: 1px solid transparent;
}

.whatsapp-sabit a:hover {
    background: #128C7E;
    transform: scale(1.02);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.25);
}

.whatsapp-sabit i {
    font-size: 1.4rem;
}

/* ========== ANİMASYONLAR ========== */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ========== MOBİL UYUMLULUK ========== */
@media (max-width: 1024px) {
    .urun-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
   
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .hero {
        padding: 140px 0 100px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        padding: 0 16px;
    }
    
    .urun-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .whatsapp-box {
        flex-direction: column;
        text-align: center;
        padding: 36px;
    }
    
    .whatsapp-content h3 {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-info h3::after,
    .footer-social h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-info p {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .urun-grid {
        grid-template-columns: 1fr;
    }
    
    .urun-aksiyonlar {
        flex-direction: column;
    }
    
    .whatsapp-sabit a span {
        display: none;
    }
    
    .whatsapp-sabit a {
        padding: 14px;
    }
    
    .whatsapp-sabit i {
        font-size: 1.6rem;
    }
}

/* ========== LOGO DÜZENLEME ========== */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 85px !important;  /* !important ile zorla büyüt */
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* Header container ayarı */
header .container {
    min-height: 90px;  /* Logoya göre yükseklik ayarla */
    padding: 2px 20px;
}

/* Mobilde küçült */
@media (max-width: 768px) {
    .logo img {
        height: 70px !important;
    }
    header .container {
        min-height: 90px;
    }
}


/* ========== HERO BUTTON FIX ========== */
.hero .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 14px 28px;
    border-radius: 30px;

    font-size: 0.95rem;
    font-weight: 500;

    text-decoration: none !important;
    
    background: #7C8F7C;
    color: #ffffff;

    border: none;
    transition: all 0.25s ease;
}

.hero .btn i {
    text-decoration: none;
}

.hero .btn:hover {
    background: #6A7B6A;
    transform: translateY(-2px);
}

.hero .btn.secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.7);
    color: #ffffff;
}

.hero .btn.secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: #ffffff;
}

/* GARANTİ ALT ÇİZGİ KALDIRMA */
.hero a {
    text-decoration: none !important;
}

/* ========== LARGE BUTTON FIX ========== */
.btn.large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 500;

    background: #7C8F7C;
    color: #ffffff;

    border-radius: 40px;
    text-decoration: none;

    transition: all 0.25s ease;
}

.btn.large:hover {
    background: #6A7B6A;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(124, 143, 124, 0.15);
}