/* --- 1. TEMEL AYARLAR --- */
:root {
    --bg-dark: #020b16; 
    --bg-card: rgba(255, 255, 255, 0.03);
    --neon-cyan: #00f2fe;
    --neon-blue: #4facfe;
    --neon-purple: #a100ff;
    --text-white: #ffffff;
    --text-gray: #94a3b8;
    --gradient-main: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    --border-light: 1px solid rgba(255, 255, 255, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* TİPOGRAFİ */
h1, h2, h3, h4 {
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.section-header { text-align: center; margin-bottom: 50px; }
.section-title { font-size: 2.5rem; margin-bottom: 10px; position: relative; display: inline-block; }
.section-title::after { content: ''; display: block; width: 50%; height: 4px; background: var(--gradient-main); margin: 10px auto 0; border-radius: 2px; }
.section-subtitle { color: var(--text-gray); }

/* --- 2. NAVBAR --- */
.navbar {
    position: fixed; top: 0; width: 100%; height: 80px;
    background: rgba(2, 11, 22, 0.9); backdrop-filter: blur(10px);
    z-index: 1000; border-bottom: var(--border-light);
    display: flex; align-items: center;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.nav-logo { display: flex; align-items: center; gap: 12px; font-size: 1.4rem; font-weight: 700; font-family: 'Rajdhani', sans-serif; color: white; }
.logo-img { width: 45px; height: auto; }
.nav-menu { display: flex; gap: 25px; align-items: center; }
.nav-link { color: var(--text-gray); text-decoration: none; font-weight: 500; transition: 0.3s; }
.nav-link:hover { color: var(--neon-cyan); }
.btn-glow { padding: 8px 20px; border: 1px solid var(--neon-cyan); border-radius: 50px; color: var(--neon-cyan); }
.btn-glow:hover { background: var(--neon-cyan); color: #000; box-shadow: 0 0 15px var(--neon-cyan); }

/* --- 3. HERO & ANIMASYONLU GÖRSEL --- */
.hero { padding-top: 100px; min-height: 80vh; display: flex; align-items: center; }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero-title { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; }
.hero-subtitle { font-size: 1.1rem; color: var(--text-gray); margin-bottom: 30px; }
.hero-buttons { display: flex; gap: 15px; }

.btn-primary { padding: 12px 30px; background: var(--gradient-main); border: none; border-radius: 6px; font-weight: 700; cursor: pointer; color: #000; transition: 0.3s; }
.btn-primary:hover { box-shadow: 0 0 20px rgba(0, 242, 254, 0.4); transform: translateY(-2px); }
.btn-secondary { padding: 12px 30px; background: transparent; border: 1px solid rgba(255,255,255,0.3); border-radius: 6px; color: white; cursor: pointer; transition: 0.3s; }
.btn-secondary:hover { border-color: var(--neon-cyan); color: var(--neon-cyan); }

.hero-visual { width: 100%; display: flex; justify-content: center; }
.image-glow-wrapper { 
    position: relative; 
    border-radius: 20px; 
    padding: 10px; 
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    width: 100%;
}
.hero-image { width: 100%; height: auto; border-radius: 15px; display: block; max-width: 600px; }

/* HAREKETLİ SAYAÇ ANİMASYONU */
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}
.floating-anim {
    animation: floating 4s ease-in-out infinite;
}

/* --- YENİ BÖLÜM: AXIOMA / HAKKIMIZDA --- */
.about-section { padding: 80px 0; background: rgba(255,255,255,0.01); }
.about-wrapper { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center; }
.about-desc { color: var(--text-gray); margin-bottom: 30px; }
.about-item { margin-bottom: 25px; border-left: 3px solid var(--neon-cyan); padding-left: 20px; }
.about-item h4 { color: var(--text-white); margin-bottom: 5px; font-size: 1.1rem; }
.about-item p { color: var(--text-gray); font-size: 0.95rem; }
.about-visual { border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); }
.axioma-img { width: 100%; height: 100%; object-fit: cover; }

/* BÜYÜK RESİM KUTUSU */
.big-image-container {
    width: 100%; margin: 0 auto 40px auto; padding: 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px; text-align: center;
}
.big-image-container img { max-width: 100%; height: auto; border-radius: 10px; }

/* --- 4. GRID VE KARTLAR --- */
section { padding: 80px 0; }
.grid-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.tech-card, .service-card {
    background: var(--bg-card);
    border: var(--border-light);
    border-radius: 20px;
    padding: 25px;
    transition: 0.4s;
    backdrop-filter: blur(5px);
}
.tech-card:hover, .service-card:hover { transform: translateY(-10px); border-color: var(--neon-cyan); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

/* RESİM SIĞDIRMA (DÜZELTİLDİ) */
.card-img-box { 
    height: 220px; 
    overflow: hidden; 
    border-radius: 12px; 
    margin-bottom: 20px; 
    background: rgba(255,255,255,0.02); /* Hafif arka plan */
    display: flex; align-items: center; justify-content: center;
}
.card-img-box img { 
    width: 100%; 
    height: 100%; 
    object-fit: contain; /* Resmin tamamını gösterir, kesmez */
    transition: 0.5s; 
}
.tech-card:hover .card-img-box img { transform: scale(1.05); }

.tech-list { list-style: none; margin-top: 15px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 10px; }
.tech-list li { color: var(--text-gray); font-size: 0.9rem; margin-bottom: 5px; }
.tech-list li::before { content: '•'; color: var(--neon-cyan); margin-right: 8px; font-size: 1.2rem; }

/* --- 5. ÖZEL HİZMETLER GRID'İ (4'LÜ YAN YANA) --- */
.services-grid-container {
    display: grid;
    /* Mobilde 1, Tablette 2, Masaüstünde 4 sütun */
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
}
@media (max-width: 1024px) {
    .services-grid-container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .services-grid-container { grid-template-columns: 1fr; }
}

/* --- 6. İKONLAR & DİĞER --- */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.feature-card-animated { text-align: center; padding: 30px; background: rgba(255,255,255,0.02); border-radius: 20px; transition: 0.3s; border: 1px solid transparent; }
.feature-card-animated:hover { border-color: rgba(255,255,255,0.1); background: rgba(255,255,255,0.04); }
.animated-icon-bg { width: 80px; height: 80px; margin: 0 auto 20px auto; border-radius: 50%; display: flex; align-items: center; justify-content: center; animation: pulseGlow 3s infinite alternate; }
.color-1 { background: linear-gradient(135deg, rgba(0, 242, 254, 0.2), rgba(0,0,0,0)); box-shadow: 0 0 20px rgba(0, 242, 254, 0.2); }
.color-2 { background: linear-gradient(135deg, rgba(79, 172, 254, 0.2), rgba(0,0,0,0)); box-shadow: 0 0 20px rgba(79, 172, 254, 0.2); }
.color-3 { background: linear-gradient(135deg, rgba(161, 0, 255, 0.2), rgba(0,0,0,0)); box-shadow: 0 0 20px rgba(161, 0, 255, 0.2); }
.color-4 { background: linear-gradient(135deg, rgba(255, 0, 128, 0.2), rgba(0,0,0,0)); box-shadow: 0 0 20px rgba(255, 0, 128, 0.2); }
.animated-icon-bg svg { width: 40px; height: 40px; stroke: white; }
@keyframes pulseGlow { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.1); opacity: 1; } }
.service-icon { font-size: 2.5rem; margin-bottom: 15px; }

/* ... Önceki kodlar aynı ... */

/* --- 7. İLETİŞİM (DÜZELTİLDİ: Gri Fon Yok, Resim Ayrı Duruyor) --- */
.contact-wrapper { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 0; 
    background: rgba(10, 20, 35, 0.6); 
    border: 1px solid rgba(255,255,255,0.1); 
    border-radius: 20px; 
    overflow: hidden; 
}

.contact-info { 
    padding: 50px; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
}

.contact-item { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 30px; }
.icon-box { width: 50px; height: 50px; background: rgba(255,255,255,0.05); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }

/* GÖRSEL AYARI - GRİLİK SİLİNDİ */
.contact-map-visual { 
    width: 100%; 
    height: 100%; 
    min-height: 300px;
    display: flex;
    align-items: center;     /* Dikey ortala */
    justify-content: center; /* Yatay ortala */
    background: transparent; /* O gri rengi kaldırdık, şeffaf oldu */
    padding: 20px;           /* Kenarlardan biraz boşluk bıraktık ki yapışmasın */
}

.contact-map-visual img { 
    width: 100%; 
    height: 100%; 
    object-fit: contain;     /* Resmi kesmeden, orantılı sığdır */
    display: block;
    border-radius: 10px;     /* Hafif yumuşak kenar */
}

/* ... Sonrasındaki Footer kodları aynı kalsın ... */

.main-footer { background: #00050a; padding-top: 60px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; color: white; }
.footer-desc { color: var(--text-gray); max-width: 300px; }
.footer-col h4 { color: white; margin-bottom: 20px; font-size: 1.1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-gray); text-decoration: none; transition: 0.3s; }
.footer-links a:hover { color: var(--neon-cyan); padding-left: 5px; }
.cert-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.cert-badge { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 5px 12px; border-radius: 4px; font-weight: 600; color: var(--neon-cyan); font-size: 0.8rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 20px 0; display: flex; justify-content: space-between; color: #555; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-content, .about-wrapper, .contact-wrapper, .footer-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.5rem; }
    .nav-menu { display: none; }
    .nav-toggle { display: block; color: white; font-size: 1.5rem; cursor: pointer; }
    .nav-toggle span { display: block; width: 25px; height: 3px; background: white; margin: 5px 0; }
}