/*
Theme Name: Nakliyat Yiğit
Theme URI: https://nakliyatyigit.com
Author: Gemini & Kanka
Description: Yiğit Nakliyat için Tır, parça ve parsiyel yük taşımacılığı odaklı kurumsal tema.
Version: 1.7
*/

:root {
    --primary-yellow: #ffcc00;
    --dark-blue: #1a2a44;
    --whatsapp-green: #25d366;
    --bg-light: #f4f7f9;
    --text-dark: #333;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Roboto', sans-serif; scroll-behavior: smooth; }
body { background-color: var(--bg-light); color: var(--text-dark); line-height: 1.6; overflow-x: hidden; }

/* --- WhatsApp Butonu (YENİ VE ŞIK) --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp-green);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-align: center;
    font-size: 16px;
    font-weight: 900;
    box-shadow: 2px 5px 20px rgba(0,0,0,0.4);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    transition: 0.3s;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    background-color: #128c7e;
    color: white;
}

.whatsapp-float i {
    font-size: 24px;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- Navigasyon --- */
nav { background: var(--white); padding: 15px 8%; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.logo { font-size: 26px; font-weight: 900; color: var(--dark-blue); text-decoration: none; text-transform: uppercase; }
.logo span { color: var(--primary-yellow); }
.nav-menu { display: flex; list-style: none; gap: 20px; }
.nav-menu li { list-style: none; }
.nav-menu a { text-decoration: none; color: var(--dark-blue); font-weight: 700; font-size: 14px; transition: 0.3s; }

/* --- Hero --- */
.hero {
    background: linear-gradient(rgba(26, 42, 68, 0.8), rgba(26, 42, 68, 0.8)), 
                url('https://images.unsplash.com/photo-1519003722824-194d4455a60c?auto=format&fit=crop&w=1350&q=80');
    background-size: cover; background-position: center; height: 70vh;
    display: flex; align-items: center; padding: 0 8%; color: white;
}
.hero h1 { font-size: clamp(26px, 5vw, 45px); font-weight: 900; line-height: 1.2; margin-bottom: 15px; }
.btn-main { padding: 18px 45px; background: var(--primary-yellow); color: var(--dark-blue); text-decoration: none; border-radius: 5px; font-weight: 900; display: inline-block; }

/* --- Hizmet Kartları --- */
.section { padding: 80px 8%; text-align: center; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.card { background: white; padding: 35px 25px; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: 0.3s; border-top: 5px solid transparent; }
.card:hover { transform: translateY(-10px); border-top: 5px solid var(--primary-yellow); }
.card i { font-size: 45px; color: var(--primary-yellow); margin-bottom: 20px; display: block; }

/* --- SSS --- */
.faq-container { max-width: 850px; margin: 0 auto; text-align: left; }
.faq-item { background: white; margin-bottom: 12px; border-radius: 8px; padding: 18px; cursor: pointer; border-left: 5px solid var(--primary-yellow); }
.faq-question { font-weight: 700; color: var(--dark-blue); display: flex; justify-content: space-between; align-items: center; }
.faq-answer { margin-top: 10px; color: #555; display: none; padding-top: 10px; border-top: 1px solid #eee; }
.faq-item.active .faq-answer { display: block; }