﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    color: #222;
}

/* HEADER */
.header {
    background: #0b3c5d;
    padding: 15px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.logo {
    height: 70px; /* 55px → 70px */
    background: white;
    padding: 6px 10px;
    border-radius: 6px;
}

nav a {
    color: white;
    margin-left: 24px;
    text-decoration: none;
    font-weight: 600; /* 500 → 600 */
    font-size: 15px;
}

    nav a:hover {
        color: #f5c400; /* sarı vurgu */
        text-decoration: none;
    }

/* HERO */
.hero {
    height: 38vh; /* KISALDI */
    min-height: 280px; /* KISALDI */
    background-size: cover;
    background-position: center center;
    position: relative;
}


.hero-overlay {
    background: linear-gradient( to right, rgba(0,0,0,0.65), rgba(0,0,0,0.25) );
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 8%;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    max-width: 600px;
    font-size: 18px;
    margin-bottom: 30px;
}

.btn {
    background: #f5c400;
    color: black;
    padding: 14px 28px;
    width: fit-content;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
}

/* SECTIONS */
.section {
    padding: 70px 10%;
    text-align: center;
    color: #0b3c5d;
}

    .section h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

.light {
    background: #f5f7fa;
}

/* CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 25px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.image-cards .card {
    padding: 0;
}

.image-cards img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.card h3 {
    margin: 20px 0;
}

/* FOOTER */
.footer {
    background: #0b3c5d;
    color: white;
    text-align: center;
    padding: 25px;
}
/* Ürünlerimiz - sadece görsel kartlar */
.image-only .card {
    padding: 0;
    overflow: hidden;
    border-radius: 12px;
}

/* Görsel boyut kontrolü */
.image-only img {
    width: 100%;
    height: 160px; /* KÜÇÜLTÜLDÜ */
    object-fit: cover;
}

@media (max-width: 768px) {
    .image-only img {
        height: 140px;
    }
}
.section.products {
    padding: 50px 10% 40px;
}
.text-logo {
    color: white;
    font-family: Arial, Arial, Arial; /* LOGOYA EN YAKIN */
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1;
    margin: 0;
}
.service-list {
    padding-left: 16px;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.5;
}

/* Servis listesi – taşma ve hizalama fix */
.card ul {
    margin: 0;
    padding-left: 18px;
    list-style-position: inside;
}

.card li {
    margin-bottom: 6px;
}

/* Kart kesin sol hizalama */
.card {
    text-align: left;
    overflow: hidden;
}

.site-title {
    color: white;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

    .site-title .brand {
        font-size: 24px;
        font-weight: 800;
        letter-spacing: 0.5px;
    }

    .site-title .desc {
        font-size: 14px;
        font-weight: 400;
        opacity: 0.85;
    }

.contact-cards {
    max-width: 820px; /* 🔥 GENİŞLİK SINIRI */
    margin: 0 auto;
}

.contact-card img {
    width: 100%;
    max-width: 420px; /* fazla yayılmasın */
    max-height: 420px;
    object-fit: contain; /* dikey foto BOZULMAZ */
    display: block;
    margin: 20px auto; /* ortala */
    border-radius: 12px;
    background: #f5f7fa;
}


.contact-card p {
    font-size: 15px;
    line-height: 1.6;
}
.contact-card h3 {
    text-align: center; /* 🔴 BAŞLIKLAR ORTALANIR */
    color: #0b3c5d;
    margin-bottom: 20px;
    font-size: 18px;
}
.contact-card p {
    text-align: center; /* 🔴 ADRES ORTADA */
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}
.contact-footer {
    margin-top: 40px;
    padding: 25px 20px;
    background: #f5f7fa;
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    text-align: center;
}

.contact-item {
    font-size: 14px;
    color: #333;
}

    .contact-item strong {
        color: #0b3c5d;
        margin-right: 6px;
    }

    .contact-item a {
        color: #0b3c5d;
        text-decoration: none;
        font-weight: 500;
    }

        .contact-item a:hover {
            text-decoration: underline;
        }
.references {
    text-align: center;
}

    .references h2 {
        color: #0b3c5d;
        margin-bottom: 40px;
    }

.references-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 35px;
    align-items: center;
}

    .references-grid img {
        max-width: 250px;
        width: 100%;
        margin: auto;
        filter: grayscale(100%);
        opacity: 0.8;
        transition: all 0.3s ease;
    }

        .references-grid img:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
        }

/* Tablet */
@media (max-width: 992px) {
    .references-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobil */
@media (max-width: 576px) {
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* =========================
   HAKKIMIZDA ÖZEL AYARLAR
   ========================= */


/* 🔒 HAKKIMIZDA YAZI SABİT SOL HİZALAMA */
.about-section .contact-card p {
    text-align: left !important;
}
/* 🔒 ABOUT SECTION KESİN SOL HİZALAMA */
.about-section {
    text-align: left !important;
}

    .about-section p,
    .about-section li {
        text-align: left !important;
    }
.lang-select {
    margin-left: 20px;
    padding: 6px 10px;
    border-radius: 4px;
    border: none;
    font-size: 13px;
    font-weight: 600;
    background: #ffffff;
    color: #0b3c5d;
    cursor: pointer;
}

    .lang-select:focus {
        outline: none;
    }















