/* GENEL AYARLAR */
body { margin: 0; padding: 0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: #f9f9f9; color: #333; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* NAVBAR (MENÜ) */
nav {
    display: flex; justify-content: space-between; align-items: center;
    background-color: #fff; padding: 10px 50px; box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky; top: 0; z-index: 1000;
}
.logo img { height: 100px; } /* logo.png boyutu */
.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links li a { font-weight: 600; color: #333; transition: 0.3s; }
.nav-links li a:hover { color: #FF6600; }

/* BUTONLAR */
.btn-orange { background-color: #FF6600; color: white !important; padding: 10px 20px; border-radius: 5px; font-weight: bold; }
.btn-orange:hover { background-color: #e65c00; }
.btn-outline { border: 2px solid #FF6600; color: #FF6600 !important; padding: 8px 18px; border-radius: 5px; }
.btn-outline:hover { background-color: #FF6600; color: white !important; }

/* HERO BÖLÜMÜ (ANA KAPAK) */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('background.jpg');
    background-size: cover; background-position: center;
    height: 80vh; display: flex; flex-direction: column;
    justify-content: center; align-items: center; text-align: center; color: white;
}
.hero h1 { font-size: 3.5rem; margin-bottom: 10px; }
.hero p { font-size: 1.2rem; margin-bottom: 20px; }

/* BÖLÜMLER (HİZMETLER & FİLO) */
.section { padding: 60px 50px; text-align: center; }
.section h2 { color: #FF6600; font-size: 2.5rem; margin-bottom: 40px; }
.grid-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.card { background: white; padding: 20px; border-radius: 10px; box-shadow: 0 0 15px rgba(0,0,0,0.1); transition: 0.3s; }
.card:hover { transform: translateY(-5px); }
.card h3 { color: #333; }

/* TALEP FORMU (PANEL İÇİN) */
.form-box { max-width: 500px; margin: 0 auto; background: white; padding: 30px; border-radius: 10px; box-shadow: 0 0 20px rgba(0,0,0,0.1); }
.form-group { margin-bottom: 15px; text-align: left; }
.form-group label { display: block; margin-bottom: 5px; font-weight: bold; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 5px; }