/* Temel Ayarlar */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
html { scroll-behavior: smooth; }

/* Renkler */
:root {
    --lacivert: #003366;
    --kirmizi: #e63946;
    --gri: #f4f4f4;
}

/* Navigasyon */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 8%; background: white; position: fixed; width: 100%; top: 0; z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.logo img { height: 60px; width: auto; }
.nav-links { display: flex; list-style: none; }
.nav-links li { margin-left: 20px; }
.nav-links li a { text-decoration: none; color: #333; font-weight: bold; transition: 0.3s; }
.nav-links li a:hover { color: var(--kirmizi); }

/* Hero Alanı */
.hero {
    height: 100vh;
    background: url('kamyon.jpg') no-repeat center center/cover;
    position: relative;
}
.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    height: 100%; width: 100%; display: flex; align-items: center; justify-content: center;
}
.hero-content { text-align: center; color: white; }
.hero-content h1 { font-size: 3.5rem; margin-bottom: 10px; }
.hero-content p { font-size: 1.5rem; margin-bottom: 30px; }

/* Butonlar */
.btn { padding: 15px 30px; border-radius: 5px; text-decoration: none; font-weight: bold; margin: 10px; display: inline-block; transition: 0.3s; }
.wa-btn { background: #25d366; color: white; }
.call-btn { background: var(--kirmizi); color: white; }
.btn:hover { transform: scale(1.05); }

/* Bölümler */
section { padding: 80px 10%; text-align: center; }
.title { font-size: 2.5rem; margin-bottom: 40px; color: var(--lacivert); }

#about { background: white; }
.about-text { max-width: 800px; margin: 0 auto; line-height: 1.8; font-size: 1.1rem; color: #555; }

#services { background: var(--gri); }
.services-container { display: flex; gap: 30px; }
.service-box { background: white; padding: 40px; flex: 1; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.service-box i { font-size: 3rem; color: var(--lacivert); margin-bottom: 20px; }

#contact { background: var(--lacivert); color: white; }
.contact-grid { display: flex; justify-content: center; gap: 40px; }
.contact-card i { font-size: 2rem; color: var(--kirmizi); margin-bottom: 10px; }

footer { padding: 20px; background: #001a33; color: white; text-align: center; }

/* Mobil Uyum */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .services-container, .contact-grid { flex-direction: column; }
    .hero-content h1 { font-size: 2rem; }
}
/* Ülkeler Bölümü Düzenlemesi */
#countries {
    padding: 80px 10%;
    background: white;
    text-align: center;
}

.countries-grid {
    display: grid;
    /* Masaüstünde yan yana en az 3, ekran genişse daha fazla sığdırır */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 25px;
    margin-top: 40px;
}

.country-item {
    background: #fdfdfd;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.country-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: var(--kirmizi);
}

.country-item img {
    width: 70px; /* Bayrakları biraz daha belirgin yaptık */
    height: auto;
    margin-bottom: 15px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.country-item p {
    font-weight: 700;
    color: var(--lacivert);
    font-size: 1rem;
    margin: 0;
}

/* Telefonlar için (Küçük ekranlarda 2'li sıra yapar) */
@media (max-width: 480px) {
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}