/* Genel Stiller */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Stilleri */
header {
    background-color: #ffffff;
    color: white;
    padding: 15px 0;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
}

.contact-info {
    text-align: right;
}

.contact-info a {
    color: rgba(0, 0, 0, 0.507);
    text-decoration: none;
}

/* Navigasyon */
nav {
    background-color: #bb2639; /* Orijinal renk */
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    padding: 12px 18px;
    display: block;
}

nav ul li a:hover {
    background-color: #bb2639; /* Orijinal renk */
}

/* Hero Bölümü - Yarı Boyutta */
.hero {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 50px 20px;
    height: 250px; /* Yarı yarıya küçültülmüş */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 24px; /* Önceki: 36px */
    margin-bottom: 10px; /* Önceki: 20px */
}

.hero p {
    font-size: 14px; /* Önceki: 18px */
    margin-bottom: 15px; /* Önceki: 30px */
}

.btn {
    display: inline-block;
    background-color: #170b86; /* Orijinal renk */
    color: white;
    padding: 8px 16px; /* Önceki: 10px 20px */
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* Hizmetler Bölümü */
.services {
    padding: 40px 0;
    text-align: center;
}

.services h2 {
    color: #bb2639; /* Orijinal renk */
    margin-bottom: 30px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-item {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.service-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
}

/* Vision Page Styles */
.vision-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/vision-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.vision-hero .hero-subtitle {
    font-size: 1.5rem;
    margin: 20px 0 30px;
    font-weight: 300;
}

.vision-mission {
    padding: 80px 0;
}

.vision-block, .mission-block {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 30px;
}

.icon-box {
    background: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.values-preview {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    margin-top: 60px;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.value-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Footer */
footer {
    background-color: #bb2639; /* Orijinal renk */
    color: white;
    padding: 30px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-column h3 {
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
}

.copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #bb2639;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info {
        margin-top: 15px;
        text-align: center;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Diğer Sayfalar İçin Hero Stilleri - Yarı Boyutta */
.about-hero,
.quality-hero,
.services-hero,
.contact-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/about-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 60px 20px; /* Önceki: 120px 20px */
    height: 120px; /* Yarı yarıya küçültülmüş */
    margin-bottom: 20px;
    position: relative;
}

.about-hero h1,
.quality-hero h1,
.services-hero h1,
.contact-hero h1 {
    font-size: 22px; /* Önceki: 48px */
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px; /* Önceki: 30px */
}

.back-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 5px 10px;
    border: 1px solid white;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
}

/* Şirket Profili */
.company-profile {
    padding: 40px 0;
    background-color: white;
}

.profile-content {
    max-width: 800px;
    margin: 0 auto;
}

.profile-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.highlight-text {
    font-weight: bold;
    color: #bb2639; /* Orijinal renk */
    font-size: 16px;
    border-left: 3px solid #bb2639; /* Orijinal renk */
    padding-left: 15px;
    margin-top: 20px;
}

/* Değerlerimiz */
.our-values {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.value-item {
    text-align: center;
    padding: 25px 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: #bb2639; /* Orijinal renk */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 25px;
}

.value-item h3 {
    color: #bb2639; /* Orijinal renk */
    margin-bottom: 10px;
}

/* Kalite Politikası */
.quality-policy {
    padding: 40px 0;
    background-color: white;
}

.commitment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.commitment-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.commitment-icon {
    width: 25px;
    height: 25px;
    background-color: #bb2639; /* Orijinal renk */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.quality-signature {
    text-align: right;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 2px solid #bb2639; /* Orijinal renk */
}

/* İletişim Sayfası */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background-color: #bb2639; /* Orijinal renk */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* Hizmetler Sayfası */
.service-section {
    padding: 25px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.service-icon {
    width: 50px;
    height: 50px;
    background-color: #bb2639; /* Orijinal renk */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
}

.service-features li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.service-features li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #bb2639; /* Orijinal renk */
}

/* Dropdown Menü */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #bb2639; /* Orijinal renk */
    min-width: 200px;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    padding: 10px 20px;
}

.dropdown > a {
    padding-right: 30px;
}

.dropdown > a i {
    margin-left: 5px;
    font-size: 12px;
}

/* Ek Responsive Ayarlar */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .values-grid,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .about-hero h1,
    .quality-hero h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 18px;
    }
    
    .back-btn {
        padding: 3px 8px;
        font-size: 11px;
    }
}

/* Language Switcher Styles */
.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.language-switcher {
    margin-bottom: 10px;
    font-size: 14px;
}

.language-switcher a {
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    padding: 2px 5px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.language-switcher a:hover {
    color: #bb2639;
}

.language-switcher a.active {
    color: #bb2639;
    font-weight: bold;
}

@media (max-width: 768px) {
    .header-right {
        align-items: center;
        margin-top: 10px;
    }
    
    .language-switcher {
        margin-bottom: 5px;
    }
}

/* Add to existing CSS */
.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.language-switcher {
    margin-bottom: 10px;
    font-size: 14px;
}

.language-switcher a {
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    padding: 2px 5px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.language-switcher a:hover {
    color: #bb2639;
}

.language-switcher a.active {
    color: #bb2639;
    font-weight: bold;
}

@media (max-width: 768px) {
    .header-right {
        align-items: center;
        margin-top: 10px;
    }
    
    .language-switcher {
        margin-bottom: 5px;
    }
}