/* style.css - Mikrogrup Teknik Sorun ve İletişim Sayfaları için Ana Stil Dosyası */
:root {
    --primary: #2c5aa0;
    --primary-dark: #1e3d6f;
    --primary-light: #4a7bc7;
    --secondary: #f8f9fa;
    --text: #333333;
    --text-light: #6c757d;
    --text-lighter: #8e9aab;
    --border: #e9ecef;
    --border-light: #f1f3f4;
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-hover: 0 10px 20px rgba(0,0,0,0.12);
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #17a2b8;
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #f8fafc;
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ===== NAVBAR STYLES ===== */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-img {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
}

.nav-link:hover {
    color: var(--primary);
    background-color: rgba(44, 90, 160, 0.05);
}

.language-switcher {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.language-switcher:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ===== MAIN CONTAINER STYLES ===== */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

/* ===== STATUS INDICATOR STYLES ===== */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff3cd;
    color: #856404;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    border: 1px solid #ffeaa7;
    font-weight: 500;
}

.status-indicator i {
    font-size: 0.8rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* ===== TYPOGRAPHY STYLES ===== */
h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 600;
}

.message {
    font-size: 1.2rem;
    max-width: 800px;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.message p {
    margin-bottom: 1rem;
}

/* ===== HIGHLIGHT SECTION STYLES ===== */
.highlight {
    background: linear-gradient(120deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 2.5rem;
    border-radius: var(--radius);
    margin: 2rem 0;
    border-left: 4px solid var(--primary);
    text-align: left;
    max-width: 800px;
    width: 100%;
}

.highlight p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* ===== SERVICES SECTION STYLES ===== */
.services-section {
    width: 100%;
    margin: 3rem 0;
}

.services-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text);
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    border: 1px solid var(--border-light);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.service-item img {
    max-width: 100%;
    max-height: 70px;
    filter: grayscale(30%);
    transition: var(--transition);
}

.service-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* ===== CONTACT PAGE SPECIFIC STYLES ===== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 2rem 0;
    align-items: start;
    width: 100%;
}

.contact-info-section {
    display: grid;
    gap: 1.5rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 1.3rem;
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.map-section {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.map-section h3 {
    margin-bottom: 1.5rem;
    color: var(--primary);
    text-align: center;
}

.map-container {
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.additional-info {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 1000px;
    margin-top: 2rem;
    text-align: center;
    border: 1px solid var(--border-light);
}

.additional-info h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.additional-info p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.additional-info strong {
    color: var(--primary);
}

/* ===== CONTACT INFO STYLES ===== */
.contact-info {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.contact-item i {
    color: var(--primary);
}

/* ===== FOOTER STYLES ===== */
.footer {
    background: white;
    padding: 2rem;
    text-align: center;
    color: var(--text-light);
    border-top: 1px solid var(--border);
    margin-top: auto;
    width: 100%;
}

.footer p {
    margin: 0;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        width: 100%;
        justify-content: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .message {
        font-size: 1.1rem;
    }
    
    .main-container {
        padding: 2rem 1rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 1rem;
    }
    
    .service-item {
        height: 100px;
        padding: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-section {
        order: -1;
    }
    
    .highlight {
        padding: 1.5rem;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .language-switcher {
        width: 100%;
        max-width: 200px;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .status-indicator {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* ===== ACCESSIBILITY ENHANCEMENTS ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar, .footer, .language-switcher {
        display: none;
    }
    
    body {
        background: white;
    }
    
    .main-container {
        padding: 1rem;
    }
    
    .service-item, .contact-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
