/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #f8f9fa;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Renk Paleti (Ford Yetkili Servis Konsepti + Logonuz) */
:root {
    --ford-blue: #003478; /* Orijinal Ford Mavisi */
    --oto-orange: #f28b00; /* Logodaki turuncuya yakın enerji rengi */
    --light-bg: #ffffff;
    --gray-bg: #f2f5f8;
    --text-color: #333333;
}

/* Header (Üst Menü) */
header {
    background-color: var(--light-bg);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo img {
    max-height: 70px;
    object-fit: contain;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    color: var(--ford-blue);
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--oto-orange);
}

/* Hero (Karşılama Ekranı) */
.hero {
    position: relative;
    background: url('https://images.unsplash.com/photo-1619642751034-765dfdf7c58e?auto=format&fit=crop&q=80') center/cover no-repeat;
    height: 500px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,52,120,0.95) 0%, rgba(0,52,120,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    background-color: var(--oto-orange);
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #d17800;
}

/* Markalarımız */
.brands {
    padding: 80px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.brands h2 {
    color: var(--ford-blue);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.brand-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.brand-item {
    width: 180px;
    height: 100px;
    background: #fff;
    border: 1px solid #e1e5eb;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,52,120,0.1);
}

.brand-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-item span {
    font-weight: 700;
    color: #444;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.ford-brand {
    width: 220px;
    height: 120px;
    border: 2px solid var(--ford-blue);
    background: #f8fbff;
}

/* Yorumlar */
.reviews {
    padding: 80px 0;
    background-color: var(--gray-bg);
    text-align: center;
}

.reviews h2 {
    color: var(--ford-blue);
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.review-box {
    background: var(--light-bg);
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.google-logo {
    font-size: 2.5rem;
    color: #4285F4;
    margin-bottom: 15px;
}

.stars {
    color: #fbbc05;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.review-box p {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.review-btn {
    display: inline-block;
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.review-btn:hover {
    background-color: #f8f9fa;
    border-color: #bbb;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Footer (Alt Bilgi ve İletişim) */
footer {
    background-color: var(--ford-blue);
    color: #fff;
    padding-top: 60px;
}

.footer-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3, .footer-hours h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--oto-orange);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--oto-orange);
    margin-top: 4px;
}

.contact-item p {
    line-height: 1.5;
    font-size: 1.05rem;
}

.footer-hours p {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.footer-bottom {
    background-color: #002255;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Mobil Uyumluluk (Responsive) */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .footer-wrapper {
        flex-direction: column;
    }
}