/* Model Prime - style.css (Neon Animasyonlu ve İçerik Zenginleştirilmiş Tam Sürüm) */

:root {
    --prime-red: #DA291C;
    --prime-black: #0A0A0A;
    --prime-dark: #141414;
    --prime-white: #FFFFFF;
    --text-gray: #A0A0A0;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Montserrat', sans-serif; }
body { background-color: var(--prime-black); color: var(--prime-white); overflow-x: hidden; scroll-behavior: smooth; }
.container { max-width: 1200px; margin: 0 auto; width: 100%; }

/* NAVBAR */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 15px 5%; background-color: rgba(10, 10, 10, 0.98); backdrop-filter: blur(10px); border-bottom: 1px solid #222; position: fixed; width: 100%; top: 0; z-index: 100; left:0; box-sizing:border-box;}
.logo-flex { display: flex; align-items: center; text-decoration: none; gap: 12px; transition: transform 0.3s ease;}
.logo-flex:hover { transform: scale(1.03); }
.main-logo-img { height: 50px; width: auto; max-width: 60px; object-fit: contain; filter: drop-shadow(0 2px 10px rgba(218,41,28,0.3)); } 
.logo-text { font-size: 28px; font-weight: 900; color: #fff; text-transform: uppercase; letter-spacing: 0.5px; } 

nav ul { list-style: none; display: flex; gap: 35px; align-items: center; }
nav ul li a { text-decoration: none; color: var(--prime-white); font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; }
nav ul li a:hover { color: var(--prime-red); }
.btn-iletisim { background-color: transparent; border: 2px solid var(--prime-red); color: var(--prime-red) !important; padding: 10px 24px; border-radius: 4px; }
.btn-iletisim:hover { background-color: var(--prime-red); color: var(--prime-white) !important; }

/* KAHRAMAN BÖLÜMÜ */
.hero-new { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; margin-top: 60px; background: radial-gradient(circle at top right, #1a0505 0%, var(--prime-black) 50%); }
.hero-container { display: flex; align-items: center; justify-content: space-between; gap: 50px; z-index: 5; padding: 0 5%; }
.hero-content { flex: 1.2; }
.badge-red { display: inline-block; padding: 8px 18px; background-color: rgba(218, 41, 28, 0.1); color: var(--prime-red); border: 1px solid var(--prime-red); border-radius: 50px; font-size: 13px; font-weight: 800; letter-spacing: 2px; margin-bottom: 25px; }
.hero-content h1 { font-size: 52px; font-weight: 900; line-height: 1.1; margin-bottom: 25px; color: #fff; }
.hero-content p { font-size: 19px; color: var(--text-gray); margin-bottom: 45px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 20px; }
.btn-primary { padding: 16px 35px; background-color: var(--prime-red); color: var(--prime-white); text-decoration: none; font-weight: 800; border-radius: 4px; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; border: none; cursor: pointer; text-align: center; font-size: 15px;}
.btn-primary:hover { background-color: #b52015; box-shadow: 0 10px 20px rgba(218, 41, 28, 0.3); transform: translateY(-3px); }
.btn-outline { padding: 16px 35px; background-color: transparent; color: var(--prime-white); border: 2px solid #333; text-decoration: none; font-weight: 800; border-radius: 4px; text-transform: uppercase; transition: 0.3s; font-size: 15px;}
.btn-outline:hover { border-color: var(--prime-white); transform: translateY(-3px); }

.hero-solutions { flex: 1; display: flex; flex-direction: column; gap: 30px; }
.sol-card { background: #111; padding: 35px; border-radius: 12px; border: 1px solid #222; position: relative; transition: transform 0.3s ease, box-shadow 0.3s ease; cursor: pointer; }
.sol-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: #333; border-radius: 4px 0 0 4px; transition: background-color 0.3s ease; }
.sol-card:hover::before { background-color: var(--prime-red); }
.sol-icon { font-size: 40px; margin-bottom: 20px; }
.sol-card h3 { font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 15px; }
.sol-card p { color: var(--text-gray); font-size: 16px; line-height: 1.6; }

/* BÖLÜMLER GENEL */
.section { padding: 100px 5%; }
.bg-darker { background-color: #050505; border-top: 1px solid #1a1a1a; border-bottom: 1px solid #1a1a1a; }
.section-padding { padding: 100px 5%; }
.section-dark { background-color: var(--prime-black); }
.section-light { background-color: #0f0f0f; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 40px; font-weight: 900; margin-bottom: 15px; color: #fff; }
.section-header p { color: var(--text-gray); font-size: 18px; max-width: 600px; margin: 0 auto; line-height: 1.6; }
.text-red { color: var(--prime-red); }

/* YENİ: NEDEN BİZ? */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.feature-box { background: var(--prime-dark); padding: 40px 30px; border-radius: 12px; text-align: center; border: 1px solid #222; }
.feature-icon { font-size: 45px; margin-bottom: 20px; }
.feature-box h4 { font-size: 20px; color: #fff; margin-bottom: 15px; font-weight: 800; }
.feature-box p { color: var(--text-gray); font-size: 15px; line-height: 1.6; }

/* YENİ: NASIL ÇALIŞIYORUZ (SÜREÇ) */
.process-container { display: flex; justify-content: space-between; gap: 20px; max-width: 1200px; margin: 0 auto; flex-wrap: wrap; }
.process-step { flex: 1; min-width: 220px; text-align: center; padding: 20px; position: relative; }
.step-number { width: 60px; height: 60px; background: var(--prime-dark); border: 2px solid var(--prime-red); color: var(--prime-red); font-size: 24px; font-weight: 900; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin: 0 auto 20px auto; box-shadow: 0 0 15px rgba(218,41,28,0.2); }
.process-step h4 { font-size: 18px; color: #fff; margin-bottom: 10px; font-weight: 800; }
.process-step p { font-size: 14px; color: var(--text-gray); line-height: 1.6; }

/* HİZMET SEÇENEKLERİ (GÖRSELLER) */
.solutions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-top: 60px; }
.solution-item { background: #0a0a0a; padding: 40px; border-radius: 12px; border: 1px solid #1a1a1a; text-align: center; }
.solution-img { width: 100%; height: 250px; object-fit: cover; border-radius: 8px; margin-bottom: 30px; border: 1px solid #222;}
.solution-item h3 { font-size: 26px; margin-bottom: 20px; color: #fff; }
.solution-item p { color: var(--text-gray); font-size: 16px; line-height: 1.7; }

/* KADEMELER */
.region-container { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; }
.region-card { flex: 1; min-width: 300px; background: var(--prime-dark); padding: 40px; border-radius: 8px; border-top: 4px solid var(--prime-red); display: flex; flex-direction: column; }
.box-outline { background: transparent; border: 1px solid #333; border-top: 4px solid #333; }
.region-icon { font-size: 50px; margin-bottom: 20px; }
.region-card h3 { font-size: 24px; font-weight: 800; margin-bottom: 15px; color: #fff; }
.region-card p { color: var(--text-gray); line-height: 1.7; margin-bottom: 25px; flex-grow: 1; }
.badge-list { display: flex; gap: 10px; flex-wrap: wrap; }
.badge-list span { background: #222; color: #ccc; padding: 5px 12px; border-radius: 4px; font-size: 12px; font-weight: 600; }
.badge-list .red-badge { background: rgba(218, 41, 28, 0.1); color: var(--prime-red); border: 1px solid var(--prime-red); }

/* =========================================
   YAYINEVLERİ VİTRİNİ (NEON ÇERÇEVE ANİMASYONU)
   ========================================= */
.publishers-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; max-width: 1200px; margin: 0 auto; }

.neon-card {
    position: relative;
    width: 260px;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #000;
    transition: transform 0.3s ease;
}

/* Dönen Işık Efekti */
.neon-card::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    background: conic-gradient(transparent, transparent, transparent, var(--prime-red));
    animation: rotateNeon 4s linear infinite;
}

@keyframes rotateNeon {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hover olduğunda ışık parlasın ve hızlansın */
.neon-card:hover { transform: translateY(-5px); }
.neon-card:hover::before {
    background: conic-gradient(transparent, var(--prime-red), transparent, var(--prime-red));
    animation-duration: 2s;
}

/* İç Kutu (Siyah Arka Plan) */
.neon-card::after {
    content: "";
    position: absolute;
    inset: 3px; /* Dıştaki neon çizginin kalınlığı */
    background: var(--prime-dark);
    border-radius: 10px;
    z-index: 1;
}

/* İçerik (Logo ve İsim) */
.neon-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 100%;
    padding: 15px;
}

.pub-logo { max-height: 60px; max-width: 140px; object-fit: contain; }
.pub-name { color: var(--prime-white); font-weight: 800; font-size: 15px; text-transform: uppercase; letter-spacing: 1px; text-align: center; }

/* İLETİŞİM FORMU */
.contact-container { display: flex; gap: 50px; max-width: 1000px; margin: 0 auto; }
.contact-info { flex: 1; display: flex; flex-direction: column; gap: 40px; }
.info-item h4 { color: var(--prime-red); font-size: 18px; margin-bottom: 8px; }
.info-item p { color: var(--prime-white); font-size: 18px; font-weight: 600; line-height: 1.5; }
.contact-form { flex: 1.5; background: var(--prime-dark); padding: 40px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); border-top: 4px solid var(--prime-red); }
.form-input { width: 100%; background: #0a0a0a; border: 1px solid #333; padding: 15px; margin-bottom: 15px; color: white; border-radius: 4px; outline: none; transition: 0.3s; font-size: 15px; }
.form-input:focus { border-color: var(--prime-red); }
.w-100 { width: 100%; }
.checkbox-section { margin-bottom: 20px; background: #0a0a0a; padding: 15px; border-radius: 4px; border: 1px solid #222; }
.checkbox-section h4 { color: #A0A0A0; font-size: 13px; text-transform: uppercase; margin-bottom: 12px; letter-spacing: 1px; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.check-grid label { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #ddd; cursor: pointer; transition: 0.2s; }
.check-grid label:hover { color: var(--prime-white); }
.check-grid input[type="checkbox"] { accent-color: var(--prime-red); width: 16px; height: 16px; cursor: pointer; }
.alert { padding: 15px; margin-bottom: 20px; border-radius: 4px; font-weight: 600; text-align: center; }
.success { background: rgba(40, 167, 69, 0.1); color: #28a745; border: 1px solid #28a745; }

/* ANİMASYONLAR */
.animate-text { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.animate-img { opacity: 0; transform: translateX(50px); transition: all 1s ease-out; transition-delay: 0.8s; }
.show-on-scroll { opacity: 1; transform: translateY(0) translateX(0); }
.hover-scale { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.hover-scale:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.4); }

/* MOBİL UYUMLULUK */
@media screen and (max-width: 850px) {
    .section, .section-padding { padding: 60px 5%; }
    .container { width: 100%; padding: 0 10px; }
    .navbar { flex-direction: column; padding: 15px; position: relative; gap: 15px; }
    nav ul { flex-wrap: wrap; justify-content: center; gap: 10px; }
    nav ul li a { font-size: 12px; }
    .logo-text { font-size: 22px; }
    .main-logo-img { height: 40px; }
    .hero-new { margin-top: 0; padding-top: 40px; padding-bottom: 40px; min-height: auto; }
    .hero-container { flex-direction: column; text-align: center; gap: 40px; }
    .hero-content h1 { font-size: 36px; }
    .hero-content p { font-size: 16px; }
    .hero-buttons { flex-direction: column; gap: 15px; width: 100%; }
    .btn-primary, .btn-outline { width: 100%; text-align: center; padding: 15px; }
    .hero-solutions { width: 100%; }
    .sol-card { padding: 25px; }
    .solutions-grid { grid-template-columns: 1fr; gap: 40px; }
    .region-container { flex-direction: column; }
    .region-card { width: 100%; min-width: 100%; padding: 30px 20px; }
    .process-container { flex-direction: column; gap: 30px;}
    .contact-container { flex-direction: column; gap: 30px; }
    .contact-form { padding: 25px 15px; }
    .form-grid { grid-template-columns: 1fr; gap: 15px; }
    .contact-form div[style*="display: flex"] { flex-direction: column; gap: 15px !important; }
    .check-grid { grid-template-columns: 1fr; }
}