/* ===== ÖZGERLER GRUP SAYFASI ===== */

.oz-hero {
    background: linear-gradient(135deg, #0054A6 0%, #1565c0 100%);
    color: #fff;
    text-align: center;
    padding: 56px 20px 48px;
}
.oz-hero h1 {
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    font-weight: 700;
    margin: 0 0 14px;
    line-height: 1.25;
}
.oz-hero p {
    font-size: 1.05rem;
    opacity: 0.92;
    max-width: 660px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Company cards */
.oz-section {
    padding: 56px 0 48px;
}
.oz-section-title {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin: 0 0 10px;
}
.oz-section-subtitle {
    text-align: center;
    color: #555;
    max-width: 680px;
    margin: 0 auto 40px;
    font-size: 0.95rem;
    line-height: 1.65;
}

.oz-cards-grid {
    display: grid;
    /* Daha büyük kart + grid container'ı sayfaya merkezle */
    grid-template-columns: repeat(auto-fit, minmax(340px, 420px));
    gap: 32px;
    max-width: 1320px;
    margin: 0 auto;
    justify-content: center;
}

.oz-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.09);
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
}
.oz-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 36px rgba(0,84,166,0.18);
}

.oz-card-media {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: #f0f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.oz-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.oz-card-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.oz-card-media iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.oz-card-placeholder {
    font-size: 3.4rem;
    color: #b0bec5;
}

/* Harita embed varsa görselin altında daha kısa şekilde göster */
.oz-card-map {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-top: 1px solid #eef2f6;
}
.oz-card-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.oz-card-body {
    padding: 26px 26px 28px;
    text-align: center;        /* Talep: merkeze hizala */
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}
.oz-card-body h3 {
    font-size: 1.32rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 10px;
    letter-spacing: -0.2px;
}
.oz-card-body p {
    font-size: 0.96rem;
    color: #475569;
    line-height: 1.65;
    margin: 0 0 18px;
    max-width: 340px;
}
.oz-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    background: #0054A6;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #0054A6;
    border-radius: 8px;
    padding: 10px 22px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(0,84,166,0.25);
}
.oz-card-link:hover {
    background: #003a73;
    border-color: #003a73;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,84,166,0.4);
}
/* İkinci link: harita yol tarifi (varsa) — kırmızı */
.oz-card-map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    background: #ea4335;
    border: 2px solid #ea4335;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    padding: 9px 18px;
    margin-top: 10px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(234,67,53,0.28);
}
.oz-card-map-link:hover {
    background: #c5221f;
    border-color: #c5221f;
    transform: translateY(-2px);
}

/* Dealer strip */
.oz-dealer-strip {
    background: #f5f7fa;
    border-top: 2px solid #e8ecf0;
    padding: 40px 0 48px;
    margin-top: 0;
}
.oz-dealer-title {
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 28px;
}
.oz-brands-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}
.oz-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 90px;
}
.oz-brand img {
    max-width: 80px;
    max-height: 44px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.2s;
}
.oz-brand:hover img { filter: grayscale(0); }
.oz-brand span {
    font-size: 0.72rem;
    font-weight: 600;
    color: #777;
    text-align: center;
}
.oz-brand-text {
    background: #fff;
    border: 2px solid #dde3ea;
    border-radius: 10px;
    padding: 10px 20px;
    min-width: 80px;
    transition: border-color 0.2s, background 0.2s;
}
.oz-brand-text:hover {
    border-color: #0054A6;
    background: #eef4ff;
}
.oz-brand-text span {
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
}

@media (max-width: 600px) {
    .oz-cards-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 22px;
        padding: 0 14px;
    }
    .oz-card-media { height: 220px; }
    .oz-card-body { padding: 22px 18px 24px; }
    .oz-card-body h3 { font-size: 1.18rem; }
    .oz-card-body p { font-size: 0.92rem; }
    .oz-hero { padding: 40px 16px 36px; }
    .oz-section { padding: 36px 0 32px; }
}
