/* ==========================================================================
   ARUIX Security Technologies — Ana Stil
   ========================================================================== */
:root {
    --bg-color: #02040f;
    --text-main: #ffffff;
    --text-muted: #8a8d9b;
    --neon-blue: #0066ff;
    --neon-cyan: #00d4ff;
    --neon-purple: #9d00ff;
    --card-bg: rgba(15, 18, 35, 0.6);
    --card-border: rgba(255, 255, 255, 0.06);
    --ok: #00ffa2;
    --err: #ff4d6d;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
    background:
        radial-gradient(1200px 600px at 80% -10%, rgba(0,102,255,0.10), transparent 60%),
        radial-gradient(900px 500px at 0% 20%, rgba(157,0,255,0.08), transparent 55%),
        linear-gradient(90deg, #02040f, #0f1c4a, #1a0b2e, #051421, #0b1536);
    background-size: auto, auto, 400% 400%;
    animation: activeBackground 18s ease infinite;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
}

@keyframes activeBackground {
    0% { background-position: 0 0, 0 0, 0% 50%; }
    50% { background-position: 0 0, 0 0, 100% 50%; }
    100% { background-position: 0 0, 0 0, 0% 50%; }
}

h1, h2, h3, h4, .nav-links a, .logo-text, .badge { font-family: 'Rajdhani', sans-serif; }
a { color: inherit; }
img { max-width: 100%; }

/* Kaydırma çubuğu */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #05070f; }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--neon-blue), var(--neon-purple)); border-radius: 10px; }

/* İLERLEME ÇUBUĞU */
.progress-container { position: fixed; top: 0; left: 0; width: 100%; height: 4px; background: transparent; z-index: 10005; }
.progress-bar { height: 100%; background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple)); width: 0%; box-shadow: 0 0 10px var(--neon-cyan); transition: width 0.1s ease-out; }

/* NAVBAR */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 22px 60px; background: transparent; position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.navbar.scrolled { padding: 12px 60px; background: rgba(2, 4, 15, 0.82); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border-bottom: 1px solid rgba(0, 212, 255, 0.12); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); }
.logo-container { display: flex; align-items: center; gap: 15px; }
.logo-container a { display: flex; align-items: center; }
.logo { height: 52px; object-fit: contain; transition: height 0.3s; filter: drop-shadow(0 0 12px rgba(0, 102, 255, 0.35)); }
.navbar.scrolled .logo { height: 42px; }
.nav-right { display: flex; align-items: center; }
.nav-links { display: flex; list-style: none; gap: 34px; margin-right: 28px; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 1.05rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.4px; position: relative; padding: 6px 0; transition: color 0.3s, text-shadow 0.3s; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px; background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue)); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); transform: translateX(-50%); box-shadow: 0 0 8px var(--neon-cyan); }
.nav-links a:hover, .nav-links a.active { color: var(--text-main); text-shadow: 0 0 10px rgba(0, 212, 255, 0.5); }
.nav-links a.active::after { width: 100%; }

.menu-btn { background: transparent; border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; padding: 9px; cursor: pointer; display: flex; align-items: center; justify-content: center; color: white; transition: 0.3s; }
.menu-btn:hover { border-color: var(--neon-blue); box-shadow: 0 0 15px rgba(0, 102, 255, 0.4); color: var(--neon-cyan); }

/* YAN MENÜ */
.side-nav { position: fixed; top: 0; right: -360px; width: 320px; height: 100vh; background: rgba(5, 7, 15, 0.98); backdrop-filter: blur(20px); border-left: 1px solid rgba(0, 212, 255, 0.2); z-index: 9999; transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1); padding: 80px 40px; box-shadow: -10px 0 30px rgba(0,0,0,0.5); overflow-y: auto; }
.side-nav.active { right: 0; }
.side-nav-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(2px); z-index: 9998; opacity: 0; visibility: hidden; transition: 0.3s; }
.side-nav-backdrop.active { opacity: 1; visibility: visible; }
.close-menu { position: absolute; top: 30px; right: 30px; background: none; border: none; color: white; cursor: pointer; transition: 0.3s; }
.close-menu:hover { color: var(--neon-cyan); transform: rotate(90deg); }
.side-nav-links { display: flex; flex-direction: column; gap: 22px; margin-top: 30px; }
.side-nav-links a { color: var(--text-muted); text-decoration: none; font-size: 1.35rem; font-family: 'Rajdhani', sans-serif; text-transform: uppercase; letter-spacing: 2px; transition: 0.3s; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 14px; }
.side-nav-links a:hover, .side-nav-links a.active { color: var(--neon-cyan); padding-left: 10px; border-bottom-color: var(--neon-cyan); }

@media (max-width: 1024px) { .nav-links { display: none; } }

/* HERO */
.hero { display: flex; padding: 16px 60px 40px 60px; min-height: 100vh; position: relative; align-items: center; justify-content: flex-start; transition: filter 0.5s ease; }
.hero-content { flex: 1; max-width: 820px; position: relative; z-index: 10; margin-top: 60px; }
.badge { display: inline-block; background: rgba(0, 102, 255, 0.1); border: 1px solid rgba(0, 102, 255, 0.3); color: var(--neon-cyan); padding: 6px 16px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; margin-bottom: 25px; box-shadow: 0 0 10px rgba(0, 102, 255, 0.2); }
.hero-title { font-size: 5.4rem; line-height: 1.08; font-weight: 700; margin-bottom: 25px; letter-spacing: 1px; }
.gradient-text { background: linear-gradient(90deg, #0055ff, #00d4ff, #9d00ff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; display: inline-block; }
.hero-desc { color: var(--text-muted); font-size: 1.2rem; line-height: 1.6; margin-bottom: 40px; max-width: 620px; }
.cta-group { display: flex; gap: 20px; margin-bottom: 50px; flex-wrap: wrap; }
.btn-primary { background: linear-gradient(90deg, #0026ff, #9d00ff); color: white; text-decoration: none; border: none; padding: 15px 30px; border-radius: 30px; font-size: 1rem; font-weight: 500; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; transition: 0.3s; box-shadow: 0 10px 20px rgba(0, 38, 255, 0.3); font-family: 'Inter', sans-serif; }
.btn-primary:hover { box-shadow: 0 10px 30px rgba(157, 0, 255, 0.5); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: white; text-decoration: none; border: 1px solid rgba(255,255,255,0.2); padding: 15px 30px; border-radius: 30px; font-size: 1rem; font-weight: 500; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; transition: 0.3s; font-family: 'Inter', sans-serif; }
.btn-secondary:hover { border-color: white; background: rgba(255,255,255,0.05); }

/* İSTATİSTİK KARTLARI */
.stats-bar { display: flex; justify-content: space-between; padding: 20px 60px 60px 60px; gap: 20px; position: relative; z-index: 10; transition: transform 0.6s ease; flex-wrap: wrap; }
.stat-card { flex: 1; min-width: 220px; background: linear-gradient(145deg, rgba(15, 18, 35, 0.8), rgba(5, 7, 15, 0.8)); border: 1px solid var(--card-border); border-radius: 16px; padding: 25px; display: flex; align-items: center; gap: 20px; backdrop-filter: blur(10px); transition: 0.3s; }
.stat-card:hover { border-color: rgba(0, 102, 255, 0.3); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); transform: translateY(-5px); }
.stat-icon { width: 50px; height: 50px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; display: flex; justify-content: center; align-items: center; flex-shrink: 0; }
.stat-card:nth-child(1) .stat-icon { color: #d900ff; }
.stat-card:nth-child(2) .stat-icon { color: #0088ff; }
.stat-card:nth-child(3) .stat-icon { color: #00ffa2; }
.stat-card:nth-child(4) .stat-icon { color: #8c00ff; }
.stat-info h3 { font-size: 1.8rem; margin-bottom: 2px; }
.stat-info p { color: var(--text-muted); font-size: 0.9rem; }

/* SCROLL GÖRÜNÜRLÜK — yalnızca JS varken gizle (JS yoksa içerik görünür kalır) */
.js section { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease, filter 0.5s ease; }
.js section.section-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    .js section { opacity: 1; transform: none; transition: none; }
}
section.target-pulse { animation: sectionPulse 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards; }
@keyframes sectionPulse { 0% { filter: brightness(1);} 30% { filter: brightness(1.25); background: rgba(0, 102, 255, 0.05);} 100% { filter: brightness(1);} }

/* VİZYON / MİSYON */
.about-section { padding: 80px 60px; position: relative; z-index: 10; border-radius: 24px; }
.section-heading { text-align: center; margin-bottom: 40px; }
.section-heading h2 { font-size: 2.8rem; font-weight: 700; letter-spacing: 2px; }
.section-heading p { color: var(--text-muted); margin-top: 10px; font-size: 1.05rem; }
.tab-controls { display: flex; justify-content: center; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
.tab-btn { background: rgba(15, 18, 35, 0.6); border: 1px solid rgba(255, 255, 255, 0.1); color: var(--text-muted); padding: 12px 35px; border-radius: 30px; font-size: 1.1rem; font-family: 'Rajdhani', sans-serif; font-weight: 600; cursor: pointer; transition: all 0.3s ease; letter-spacing: 1px; }
.tab-btn:hover { border-color: var(--neon-cyan); color: var(--text-main); box-shadow: 0 0 15px rgba(0, 212, 255, 0.2); }
.tab-btn.active { background: linear-gradient(90deg, #0026ff, #9d00ff); color: white; border-color: transparent; box-shadow: 0 5px 20px rgba(157, 0, 255, 0.4); }
.about-container { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; }
.about-card { width: 100%; background: linear-gradient(145deg, rgba(15, 18, 35, 0.7), rgba(5, 7, 15, 0.7)); border: 1px solid var(--card-border); border-radius: 20px; padding: 50px 40px; backdrop-filter: blur(10px); position: relative; overflow: hidden; text-align: center; transition: opacity 0.4s ease, transform 0.4s ease; }
.about-card.hidden { display: none; }
.about-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--neon-blue), var(--neon-cyan)); }
.about-icon { width: 75px; height: 75px; background: rgba(0, 102, 255, 0.1); border: 1px solid rgba(0, 102, 255, 0.2); border-radius: 15px; display: flex; justify-content: center; align-items: center; color: var(--neon-cyan); margin: 0 auto 30px auto; }
#card-misyon::before { background: linear-gradient(90deg, var(--neon-purple), var(--neon-blue)); }
#card-misyon .about-icon { color: #d900ff; background: rgba(157, 0, 255, 0.1); border-color: rgba(157, 0, 255, 0.2); }
.about-card h2 { font-size: 2.2rem; margin-bottom: 20px; letter-spacing: 2px; color: var(--text-main); }
.about-card p { color: var(--text-muted); font-size: 1.1rem; line-height: 1.8; text-align: center; }

/* ARAMA ÇUBUĞU */
.search-input { background: rgba(15, 18, 35, 0.8); border: 1px solid rgba(255, 255, 255, 0.1); padding: 12px 20px 12px 42px; border-radius: 30px; color: white; width: 260px; font-family: 'Inter', sans-serif; font-size: 0.95rem; transition: 0.3s; background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%238a8d9b" stroke-width="2"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>'); background-repeat: no-repeat; background-position: 14px center; background-size: 18px; }
.search-input:focus { border-color: var(--neon-cyan); outline: none; width: 300px; box-shadow: 0 0 15px rgba(0, 212, 255, 0.2); }

/* SLIDER OKLARI */
.slider-btn { background: rgba(0, 102, 255, 0.1); border: 1px solid rgba(0, 102, 255, 0.3); color: var(--neon-cyan); width: 50px; height: 50px; border-radius: 50%; cursor: pointer; display: flex; justify-content: center; align-items: center; transition: 0.3s; box-shadow: 0 0 10px rgba(0, 102, 255, 0.1); position: absolute; top: 40%; transform: translateY(-50%); z-index: 20; }
.slider-btn:hover { background: var(--neon-blue); color: white; box-shadow: 0 0 15px rgba(0, 102, 255, 0.4); transform: translateY(-50%) scale(1.1); }
.prev-arrow { left: -25px; }
.next-arrow { right: -25px; }

@media (max-width: 1024px) { .prev-arrow { left: 0; } .next-arrow { right: 0; } .search-input { width: 100%; } }
@media (max-width: 768px) { .slider-btn { display: none; } .tab-controls { flex-direction: column; gap: 10px; } }

/* ÜLKE PANELİ */
.country-dropdown-panel { background: linear-gradient(145deg, rgba(15, 18, 35, 0.95), rgba(5, 7, 15, 0.95)); border: 1px solid rgba(0, 212, 255, 0.3); border-radius: 16px; padding: 25px; margin: -20px 60px 40px 60px; box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1); backdrop-filter: blur(15px); display: none; position: relative; z-index: 9; }
.country-panel-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 15px; }
.country-panel-header h3 { font-size: 1.5rem; color: var(--text-main); font-family: 'Rajdhani', sans-serif; }
.country-list { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.country-list li { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.05); padding: 12px 18px; border-radius: 8px; color: var(--text-muted); font-weight: 500; display: flex; align-items: center; }
.country-list li::before { content: "•"; color: var(--neon-cyan); font-size: 1.5rem; margin-right: 12px; }
@media (max-width: 768px) { .country-list { grid-template-columns: 1fr; } .country-dropdown-panel { margin: -20px 25px 40px 25px; } }

/* ÜRÜNLER */
.products-section { padding: 80px 60px; position: relative; z-index: 10; border-top: 1px solid rgba(255, 255, 255, 0.02); border-radius: 24px; }
.products-container { max-width: 1300px; margin: 0 auto; position: relative; }
.products-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }
.products-header h2 { font-size: 3rem; font-weight: 700; letter-spacing: 2px; }
.product-slider-wrapper { overflow: hidden; width: 100%; padding: 10px 5px 20px; }
.product-track { display: flex; gap: 30px; transition: transform 0.5s ease-in-out; }
.product-track.grid-mode { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; transform: none !important; }
.product-card-placeholder { flex: 0 0 calc(33.333% - 20px); background: linear-gradient(145deg, rgba(15, 18, 35, 0.5), rgba(5, 7, 15, 0.5)); border: 1px solid var(--card-border); border-radius: 20px; padding: 45px 30px; text-align: center; backdrop-filter: blur(10px); transition: 0.3s; display: flex; flex-direction: column; align-items: center; }
.product-track.grid-mode .product-card-placeholder { flex: unset; width: 100%; }
.product-card-placeholder:hover { border-color: rgba(0, 102, 255, 0.3); box-shadow: 0 15px 35px rgba(0, 102, 255, 0.1); transform: translateY(-5px); }
.product-placeholder-icon { width: 70px; height: 70px; background: rgba(0, 102, 255, 0.05); border: 1px dashed rgba(0, 102, 255, 0.3); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--neon-blue); margin-bottom: 25px; }
.product-card-placeholder h3 { font-size: 1.5rem; margin-bottom: 15px; letter-spacing: 1px; }
.product-card-placeholder h3 a { text-decoration: none; color: inherit; transition: color .3s; }
.product-card-placeholder h3 a:hover { color: var(--neon-cyan); }
.product-card-placeholder p { color: var(--text-muted); font-size: 1rem; line-height: 1.6; margin-bottom: 20px; flex-grow: 1; }
.product-card-actions { display: flex; gap: 10px; margin-top: auto; flex-wrap: wrap; justify-content: center; }
.btn-product-contact { display: inline-block; padding: 8px 22px; background: rgba(0, 212, 255, 0.1); color: var(--neon-cyan); text-decoration: none; border: 1px solid rgba(0, 212, 255, 0.3); border-radius: 20px; font-size: 0.9rem; font-weight: 600; transition: 0.3s; }
.btn-product-contact:hover { background: var(--neon-cyan); color: #000; box-shadow: 0 0 15px rgba(0, 212, 255, 0.4); }
.btn-product-detail { display: inline-block; padding: 8px 22px; background: transparent; color: var(--text-muted); text-decoration: none; border: 1px solid rgba(255,255,255,0.15); border-radius: 20px; font-size: 0.9rem; font-weight: 600; transition: 0.3s; }
.btn-product-detail:hover { border-color: #fff; color: #fff; }
.product-thumb { width: 100%; height: 170px; object-fit: cover; border-radius: 14px; margin-bottom: 22px; border: 1px solid rgba(255,255,255,0.06); }
.load-more-container { text-align: center; margin-top: 45px; }
@media (max-width: 1024px) { .product-card-placeholder { flex: 0 0 calc(50% - 15px); } .product-track.grid-mode { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .product-card-placeholder { flex: 0 0 100%; } .product-track.grid-mode { grid-template-columns: 1fr; } .products-header { flex-direction: column; align-items: flex-start; gap: 15px; } }

/* BLOG */
.blog-section { padding: 80px 60px; position: relative; z-index: 10; border-top: 1px solid rgba(255, 255, 255, 0.02); border-radius: 24px; }
.blog-container { max-width: 1300px; margin: 0 auto; position: relative; }
.blog-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }
.blog-header h2 { font-size: 3rem; font-weight: 700; letter-spacing: 2px; font-family: 'Rajdhani', sans-serif; }
.blog-slider-wrapper { overflow: hidden; width: 100%; padding: 10px 5px 20px; }
.blog-track { display: flex; gap: 30px; transition: transform 0.5s ease-in-out; }
.blog-track.grid-mode { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; transform: none !important; }
.blog-card { flex: 0 0 calc(25% - 22.5px); background: linear-gradient(145deg, rgba(15, 18, 35, 0.6), rgba(5, 7, 15, 0.6)); border: 1px solid var(--card-border); overflow: hidden; backdrop-filter: blur(10px); transition: 0.3s; display: flex; flex-direction: column; border-radius: 16px; }
.blog-track.grid-mode .blog-card { flex: unset; width: 100%; }
.blog-card:hover { border-color: rgba(0, 102, 255, 0.3); box-shadow: 0 10px 30px rgba(0, 102, 255, 0.15); transform: translateY(-5px); }
.blog-image { width: 100%; height: 190px; overflow: hidden; border-bottom: 1px solid rgba(255, 255, 255, 0.05); display: block; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-image img { transform: scale(1.06); }
.blog-image.placeholder { background: linear-gradient(135deg, #0b1536, #1a0b2e); display: flex; align-items: center; justify-content: center; color: rgba(0, 212, 255, 0.4); }
.blog-content { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-date { font-size: 0.85rem; color: var(--neon-cyan); margin-bottom: 10px; font-weight: 600; }
.blog-title { font-size: 1.25rem; margin-bottom: 15px; font-family: 'Rajdhani', sans-serif; color: var(--text-main); line-height: 1.3; }
.blog-title a { text-decoration: none; color: inherit; transition: color .3s; }
.blog-title a:hover { color: var(--neon-cyan); }
.blog-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; margin-bottom: 20px; flex-grow: 1; }
.btn-read-more { color: white; text-decoration: none; font-size: 0.9rem; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; transition: 0.3s; align-self: flex-start; }
.btn-read-more:hover { color: var(--neon-cyan); gap: 12px; }
.blog-load-more { text-align: center; margin-top: 40px; }
.empty-note { text-align:center; color: var(--text-muted); padding: 40px; border: 1px dashed rgba(255,255,255,0.1); border-radius: 16px; }
@media (max-width: 1024px) { .blog-card { flex: 0 0 calc(50% - 15px); } .blog-track.grid-mode { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .blog-card { flex: 0 0 100%; } .blog-track.grid-mode { grid-template-columns: 1fr; } .blog-header { flex-direction: column; align-items: flex-start; gap: 15px; } }

/* İLETİŞİM */
.contact-section { padding: 100px 60px; background: rgba(15, 18, 35, 0.3); position: relative; border-top: 1px solid rgba(255, 255, 255, 0.02); border-radius: 24px; }
.contact-container { display: flex; gap: 60px; max-width: 1300px; margin: 0 auto; }
.contact-form-container { flex: 1.2; }
.contact-section h2 { font-size: 3rem; font-weight: 700; margin-bottom: 15px; letter-spacing: 2px; }
.contact-subtitle { color: var(--text-muted); margin-bottom: 30px; font-size: 1.05rem; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group input, .form-group textarea { width: 100%; padding: 16px 20px; background: rgba(15, 18, 35, 0.5); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px; color: white; font-family: 'Inter', sans-serif; font-size: 1rem; transition: 0.3s; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--neon-cyan); box-shadow: 0 0 15px rgba(0, 212, 255, 0.2); background: rgba(15, 18, 35, 0.8); outline: none; }
.form-group textarea { resize: vertical; }
.contact-info-container { flex: 0.8; display: flex; flex-direction: column; gap: 18px; justify-content: center; }
.contact-card-new { background: linear-gradient(145deg, rgba(15, 18, 35, 0.8), rgba(5, 7, 15, 0.8)); border: 1px solid var(--card-border); border-radius: 20px; padding: 22px; display: flex; align-items: center; gap: 20px; backdrop-filter: blur(10px); transition: all 0.3s ease; }
.contact-card-new:hover { border-color: rgba(0, 102, 255, 0.4); box-shadow: 0 15px 35px rgba(0, 102, 255, 0.15); transform: translateY(-4px); }
.contact-card-new .icon-box { min-width: 50px; height: 50px; background: rgba(0, 102, 255, 0.1); border: 1px solid rgba(0, 102, 255, 0.2); border-radius: 14px; display: flex; justify-content: center; align-items: center; color: var(--neon-cyan); box-shadow: inset 0 0 10px rgba(0, 102, 255, 0.2); }
.contact-card-new:nth-child(even) .icon-box { background: rgba(157, 0, 255, 0.1); border: 1px solid rgba(157, 0, 255, 0.2); color: #b042ff; box-shadow: inset 0 0 10px rgba(157, 0, 255, 0.2); }
.info-text h4 { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.info-text a, .info-text span { color: var(--text-main); text-decoration: none; font-size: 1.15rem; font-weight: 600; font-family: 'Rajdhani', sans-serif; letter-spacing: 0.5px; transition: color 0.3s; }
.info-text a:hover { color: var(--neon-cyan); }
@media (max-width: 768px) { .contact-container { flex-direction: column; } .contact-section { padding: 70px 25px; } }

/* FORM UYARI (inline) */
.form-alert { padding: 14px 18px; border-radius: 12px; margin-bottom: 18px; font-size: 0.95rem; border: 1px solid; }
.form-alert.success { background: rgba(0,255,162,0.08); border-color: rgba(0,255,162,0.4); color: #6bffcb; }
.form-alert.error { background: rgba(255,77,109,0.08); border-color: rgba(255,77,109,0.4); color: #ff8fa3; }

/* FOOTER */
.site-footer { background: linear-gradient(0deg, rgba(2, 4, 15, 1) 0%, rgba(15, 18, 35, 0.4) 100%); border-top: 1px solid rgba(255, 255, 255, 0.05); padding: 80px 60px 30px 60px; position: relative; z-index: 10; }
.footer-container { display: flex; justify-content: space-between; gap: 50px; max-width: 1300px; margin: 0 auto; flex-wrap: wrap; }
.footer-col { flex: 1; min-width: 220px; }
.brand-col .footer-logo { height: 56px; margin-bottom: 20px; object-fit: contain; filter: drop-shadow(0 0 12px rgba(0,102,255,0.3)); }
.brand-col .footer-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 25px; max-width: 280px; }
.social-links { display: flex; gap: 15px; }
.social-links a { display: flex; justify-content: center; align-items: center; width: 42px; height: 42px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 50%; color: var(--text-main); transition: all 0.3s ease; }
.social-links a:hover { background: var(--neon-cyan); color: #000; border-color: var(--neon-cyan); box-shadow: 0 0 15px rgba(0, 212, 255, 0.4); transform: translateY(-4px); }
.footer-col h3 { color: var(--text-main); font-family: 'Inter', sans-serif; font-size: 1.3rem; margin-bottom: 25px; font-weight: 600; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 15px; }
.footer-col ul li a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; transition: all 0.3s ease; display: inline-block; }
.footer-col ul li a:hover { color: var(--neon-cyan); transform: translateX(5px); }
.footer-bottom { text-align: center; margin-top: 60px; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.05); color: var(--text-muted); font-size: 0.9rem; }
.footer-bottom a { color: var(--text-muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--neon-cyan); }
@media (max-width: 768px) { .footer-container { flex-direction: column; gap: 30px; } .site-footer { padding: 60px 25px 30px; } .navbar { padding: 22px 25px; } .navbar.scrolled { padding: 12px 25px; } .hero { padding: 16px 25px 40px; } .hero-title { font-size: 3.2rem; } .about-section, .products-section, .blog-section { padding: 60px 25px; } .stats-bar { padding: 20px 25px 40px; } }

/* MODAL */
.modal-overlay { position: fixed; inset: 0; background: rgba(2, 4, 15, 0.8); backdrop-filter: blur(8px); z-index: 20000; display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: all 0.3s ease; padding: 20px; }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content { background: linear-gradient(145deg, rgba(15, 18, 35, 0.98), rgba(5, 7, 15, 0.98)); border: 1px solid rgba(0, 212, 255, 0.3); border-radius: 16px; width: 100%; max-width: 800px; max-height: 85vh; overflow-y: auto; padding: 40px; position: relative; box-shadow: 0 10px 40px rgba(0, 212, 255, 0.2); transform: translateY(-20px); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.modal-overlay.active .modal-content { transform: translateY(0); }
.modal-content::-webkit-scrollbar { width: 8px; }
.modal-content::-webkit-scrollbar-track { background: rgba(0,0,0,0.2); border-radius: 10px; }
.modal-content::-webkit-scrollbar-thumb { background: var(--neon-cyan); border-radius: 10px; }
.modal-close { position: absolute; top: 20px; right: 20px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); color: var(--text-main); width: 36px; height: 36px; border-radius: 50%; display: flex; justify-content: center; align-items: center; cursor: pointer; transition: 0.3s; }
.modal-close:hover { background: var(--neon-cyan); color: #000; box-shadow: 0 0 15px var(--neon-cyan); transform: rotate(90deg); }
.modal-body h2 { font-size: 1.6rem; color: var(--text-main); margin-bottom: 20px; text-align: center; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 15px; letter-spacing: 1px; }
.modal-body h3 { font-size: 1.15rem; color: var(--neon-cyan); margin-top: 25px; margin-bottom: 10px; font-family: 'Inter', sans-serif; font-weight: 600; }
.modal-body p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 15px; text-align: justify; }
.modal-body ul { padding-left: 20px; color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 15px; }
.modal-body ul li { margin-bottom: 8px; }
@media (max-width: 768px) { .modal-content { padding: 25px; } }

/* SÜS IŞIKLARI */
.flare { position: absolute; border-radius: 50%; filter: blur(3px); pointer-events: none; }
.flare-1 { top: 15%; left: 5%; width: 4px; height: 4px; background: #ff007f; box-shadow: 0 0 20px 5px #ff007f; }
.flare-2 { top: 20%; right: 10%; width: 3px; height: 3px; background: #00d4ff; box-shadow: 0 0 15px 4px #00d4ff; }

/* TOAST */
.toast-notification { position: fixed; top: 90px; right: 20px; background: rgba(15, 18, 35, 0.95); border: 1px solid var(--neon-cyan); color: var(--text-main); padding: 12px 20px; border-radius: 8px; font-size: 0.9rem; font-weight: 500; font-family: 'Inter', sans-serif; box-shadow: 0 0 15px rgba(0, 212, 255, 0.2); z-index: 10000; opacity: 0; transform: translateY(-20px); transition: all 0.3s ease; pointer-events: none; }
.toast-notification.show { opacity: 1; transform: translateY(0); }

/* ============ İÇ SAYFA (Ürün / Blog detay) ============ */
.page-wrap { max-width: 900px; margin: 0 auto; padding: 140px 30px 80px; position: relative; z-index: 10; }
.page-wrap.wide { max-width: 1300px; }
section.page-wrap { opacity: 1; transform: none; }
.breadcrumb { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 25px; }
.breadcrumb a { color: var(--neon-cyan); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.article-header h1 { font-size: 3rem; line-height: 1.1; margin-bottom: 15px; letter-spacing: 1px; }
.article-meta { color: var(--neon-cyan); font-weight: 600; margin-bottom: 30px; font-size: 0.95rem; }
.article-cover { width: 100%; max-height: 440px; object-fit: cover; border-radius: 20px; margin-bottom: 35px; border: 1px solid rgba(255,255,255,0.06); }
.article-cover.placeholder { height: 300px; background: linear-gradient(135deg, #0b1536, #1a0b2e); display: flex; align-items: center; justify-content: center; color: rgba(0,212,255,0.35); }
.article-body { color: #c8cad6; font-size: 1.12rem; line-height: 1.9; }
.article-body p { margin-bottom: 22px; }
.article-body h2 { font-size: 1.9rem; margin: 35px 0 15px; color: #fff; }
.article-body h3 { font-size: 1.4rem; margin: 28px 0 12px; color: #fff; }
.article-body ul, .article-body ol { margin: 0 0 22px 22px; }
.article-body li { margin-bottom: 10px; }
.article-body a { color: var(--neon-cyan); }
.article-body img { border-radius: 14px; margin: 15px 0; }
.product-hero-icon { width: 90px; height: 90px; background: rgba(0,102,255,0.1); border: 1px solid rgba(0,102,255,0.3); border-radius: 20px; display:flex; align-items:center; justify-content:center; color: var(--neon-cyan); margin-bottom: 25px; }
.back-cta { margin-top: 45px; display: flex; gap: 15px; flex-wrap: wrap; }
.related-title { font-size: 1.6rem; margin: 60px 0 25px; letter-spacing: 1px; }
