/* Vimex-Service Style CSS - Yeni Renk Paleti ve Gerçek Logo */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,600;0,800;1,800&family=Open+Sans:wght@400;600&display=swap');

:root {
    --primary-color: #0a4b66; /* Vimex Lacivert / Koyu Mavi */
    --secondary-color: #008b98; /* Vimex Turkuaz / Açık Mavi */
    --text-dark: #2d3748;
    --text-light: #4a5568;
    --bg-light: #f7fafc;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

body {
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding { padding: 80px 0; }
.bg-light { background-color: var(--bg-light); }

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.9rem;
}
.top-bar-content {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

/* Navbar & Logo */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px;
}

/* Gerçek Logo Ayarları */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.logo-img {
    max-height: 170px; /* Navbar içerisine tam sığması için */
    width: auto;
    object-fit: contain;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
}
.nav-links a:hover {
    color: var(--secondary-color);
}
.btn-outline {
    border: 2px solid var(--secondary-color);
    padding: 8px 20px;
    border-radius: 5px;
    color: var(--secondary-color) !important;
}
.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--white) !important;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}
.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}
.btn-primary:hover {
    background-color: #007682; /* Biraz daha koyu turkuaz */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 139, 152, 0.3);
}
.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
}
.btn-secondary:hover {
    background-color: var(--bg-light);
}
.btn-block { width: 100%; }

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    background: url('https://vimex-service.de/7ff1569f-3e4b-4880-a442-984f0f3d1bf8.jpg') center/cover;
    display: flex;
    align-items: center;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 75, 102, 0.75);
}
.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 800px;
}
.hero-content h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 20px;
}
.highlight {
    color: var(--secondary-color);
}
.hero-content p {
    color: #e2e8f0;
    font-size: 1.2rem;
    margin-bottom: 30px;
}
.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
}
.divider {
    height: 4px;
    width: 60px;
    background-color: var(--secondary-color);
    margin: 15px auto;
}

/* Services */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}
.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(0, 139, 152, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.icon-wrapper i {
    font-size: 30px;
    color: var(--secondary-color);
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}
.cta-content h2, .cta-content p {
    color: var(--white);
}
.check-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.check-list li {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.check-list i {
    color: var(--secondary-color);
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}
.info-box {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.info-box i {
    font-size: 24px;
    color: var(--secondary-color);
    background: rgba(0, 139, 152, 0.1);
    padding: 15px;
    border-radius: 50%;
    height: fit-content;
}
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.form-row { display: flex; gap: 20px; }
.form-group { margin-bottom: 20px; flex: 1; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--secondary-color);
}

/* Footer */
.footer {
    background-color: #052634; /* Ana rengin çok koyu tonu */
    color: #cbd5e1;
    padding: 60px 0 0;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* Footer Logosu için Özel Ayar (Koyu zeminde okunabilmesi için arka plan) */
.logo-img-footer {
    max-height: 120px;
    width: auto;
    background-color: rgba(255, 255, 255, 0.95); /* Hafif beyaz zemin */
    padding: 8px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.3rem;
}
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 10px; }
.footer-section ul a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
}
.footer-section ul a:hover {
    color: var(--secondary-color);
}
.footer-section p {
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.footer-bottom {
    background-color: #031720;
    padding: 20px 0;
    text-align: center;
}
.footer-bottom p { margin: 0; font-size: 0.9rem; }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .form-row { flex-direction: column; gap: 0; }
}
.custom-mail {
    color: inherit; /* Üst div'deki (beyaz/siyah/gri) rengi otomatik alır */
    text-decoration: none; /* Altındaki çizgiyi kaldırır */
    cursor: default; /* Üzerine gelince el işareti çıkmasın istiyorsanız (isteğe bağlı) */
}

/* Bazı tarayıcılar ziyaret edilmiş linkleri mor yapar, bunu engellemek için: */
.custom-mail:visited, 
.custom-mail:active, 
.custom-mail:focus {
    color: inherit;
    text-decoration: none;
}