/* style.css - UGC Başvuru Özel Tasarım Şablonu */

/* --- RENK PALETİ VE DEĞİŞKENLER --- */
:root {
    --bg-white: #ffffff;
    --bg-light: #f9f9f9;
    
    --brand-cyan: #00c7c7;
    --brand-cyan-light: #e0f7f7;
    --brand-purple: #6c42d9;
    --brand-purple-light: #ede8f5;
    --brand-orange: #ff9f6b;
    --brand-orange-light: #ffebe9;
    
    --text-darkest: #1f1b2e; 
    --text-dark: #3a3347; 
    --text-gray: #756d82; 
    
    --border-color: #eae6f0;
    --shadow-soft: 0 8px 30px rgba(108, 66, 217, 0.08);
    --shadow-hover: 0 15px 40px rgba(108, 66, 217, 0.15);
    
    --radius-md: 16px;
    --radius-lg: 32px;
    --radius-pill: 100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
body { background-color: var(--bg-white); color: var(--text-dark); font-family: 'Outfit', sans-serif; line-height: 1.7; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { color: var(--text-darkest); font-weight: 700; line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* --- BUTONLAR --- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 28px; border-radius: var(--radius-pill); font-size: 15px; font-weight: 600;
    cursor: pointer; transition: all 0.3s ease; border: 2px solid transparent; width: 100%;
    text-align: center;
}

.btn-ig-gradient {
    background-image: linear-gradient(45deg, #F9CE34 0%, #FF4E50 30%, #E100A4 70%, #8134AF 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 8px 25px rgba(225, 0, 164, 0.25);
}
.btn-ig-gradient:hover {
    background-image: linear-gradient(45deg, #FF4E50 0%, #E100A4 30%, #8134AF 70%, #F9CE34 100%);
    transform: translateY(-3px); box-shadow: 0 12px 30px rgba(225, 0, 164, 0.35);
}

.btn-outline { background-color: transparent; color: var(--brand-purple); border-color: var(--border-color); width: auto;}
.btn-outline:hover { background-color: var(--brand-purple-light); color: var(--brand-purple); }

/* --- HEADER --- */
header {
    position: fixed; top: 0; left: 0; right: 0; height: 90px; z-index: 1000;
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color); transition: all 0.3s ease;
}
header.scrolled { height: 75px; box-shadow: var(--shadow-soft); background: #ffffff; border-bottom: none; }
.nav-container {
    max-width: 1280px; margin: 0 auto; height: 100%; padding: 0 30px;
    display: flex; align-items: center; justify-content: space-between;
}

.logo-text { font-size: 22px; font-weight: 800; color: var(--text-darkest); letter-spacing: -0.5px; }
.logo-text span { color: var(--brand-cyan); }

.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--text-dark); position: relative; }
.nav-links a::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px;
    background-color: var(--brand-cyan); transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--brand-cyan); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; gap: 15px; align-items: center; }
.mobile-menu-btn { display: none; font-size: 24px; color: var(--text-darkest); background: none; border: none; cursor: pointer; }

@media (max-width: 900px) {
    .nav-links { 
        display: none; flex-direction: column; position: absolute; 
        top: 90px; left: 0; width: 100%; background: rgba(255, 255, 255, 0.98); 
        padding: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
        text-align: center; gap: 15px;
    }
    header.scrolled .nav-links { top: 75px; }
    .nav-links.active { display: flex; } 
    .mobile-menu-btn { display: block; } 
    
    .nav-actions .btn { font-size: 13px; padding: 10px 18px; white-space: nowrap; } 
}

@media (max-width: 480px) {
    .nav-container { padding: 0 15px; }
    .logo-text { font-size: 20px; }
    .nav-actions .btn { font-size: 12px; padding: 8px 14px; gap: 5px; }
}

/* --- HERO & FORM BÖLÜMÜ --- */
.hero {
    position: relative; padding: 150px 30px 100px; display: flex; justify-content: center; align-items: center; min-height: 100vh;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--brand-purple-light) 100%); overflow: hidden;
}

.shape-1 { position: absolute; top: -10%; right: -5%; width: 500px; height: 500px; background: var(--brand-purple); opacity: 0.03; border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; animation: morph 15s ease-in-out infinite alternate; z-index: 0; }
@keyframes morph { 0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; } 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; } }

.hero-container {
    max-width: 1280px; width: 100%; position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: space-between; gap: 50px;
}
.hero-content { flex: 1; max-width: 550px; }

.hero-content h1 { font-size: 48px; font-weight: 800; margin-bottom: 20px; letter-spacing: -1px; line-height: 1.1; }
.hero-content h1 span.cyan { color: var(--brand-cyan); }
.hero-content p { font-size: 17px; color: var(--text-gray); margin-bottom: 30px; line-height: 1.8; }

.features-list { margin-top: 30px; display: flex; flex-direction: column; gap: 15px; }
.feature-item { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; }
.feature-item i { color: var(--brand-cyan); font-size: 18px; }

/* BAŞVURU FORMU (GLASSMORPHISM) */
.hero-form-wrapper {
    flex: 1;
    max-width: 550px; width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.form-header { text-align: center; margin-bottom: 30px; }
.form-header h2 { font-size: 24px; margin-bottom: 10px; }
.form-header p { font-size: 14px; color: var(--text-gray); }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text-darkest); }
.form-control {
    width: 100%; padding: 12px 18px; border-radius: 12px; border: 1px solid var(--border-color);
    background: var(--bg-white); font-size: 14px; font-family: 'Outfit', sans-serif; transition: 0.3s;
}
.form-control:focus { outline: none; border-color: var(--brand-purple); box-shadow: 0 0 0 4px rgba(108, 66, 217, 0.1); }

/* TEK SÜTUN YAPISI KORUNDU */
.form-row { display: grid; grid-template-columns: 1fr; gap: 15px; }

.checkbox-group { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 25px; }
.checkbox-group input[type="checkbox"] { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--brand-purple); }
.checkbox-group label { font-size: 12px; color: var(--text-gray); line-height: 1.5; font-weight: 400; }

.alert { padding: 15px; border-radius: 12px; margin-bottom: 20px; font-size: 13px; font-weight: 500; text-align: center; }
.alert-error { background: #ffebee; color: #c62828; border: 1px solid #ffcdd2; }
.alert-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }

@media (max-width: 1024px) {
    .hero-container { flex-direction: column; padding-top: 20px;}
    .hero-content, .hero-form-wrapper { max-width: 100%; }
    .hero { padding: 120px 20px 60px; min-height: auto;}
}

@media (max-width: 600px) {
    .hero-content h1 { font-size: 34px; }
    .hero-form-wrapper { padding: 25px; border-radius: 20px;}
    .form-header h2 { font-size: 20px; }
}

/* --- ORTAK BÖLÜM YAPISI --- */
.section-wrapper { padding: 80px 30px; }
.section-light { background-color: var(--bg-light); border-radius: 40px; margin: 0 20px; }
@media (max-width: 600px) {
    .section-wrapper { padding: 60px 20px; }
    .section-light { border-radius: 20px; margin: 0 10px; }
}
.container { max-width: 1280px; margin: 0 auto; }
.section-title { margin-bottom: 50px; text-align: center; }
.section-title h2 { font-size: 36px; font-weight: 800; margin-bottom: 15px; }
.section-title p { font-size: 16px; color: var(--text-gray); max-width: 800px; margin: 0 auto; }

/* SEO METİN ALANI İÇİN ÖZEL STİL */
.seo-text-container {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    margin-top: -30px;
    margin-bottom: 50px;
}
.seo-text-container h2 { font-size: 28px; margin-bottom: 20px; color: var(--text-darkest); }
.seo-text-container p { font-size: 16px; color: var(--text-gray); margin-bottom: 15px; line-height: 1.8; }
.seo-text-container strong { color: var(--brand-purple); font-weight: 600; }

@media (max-width: 768px) {
    .section-title h2 { font-size: 28px; }
    .seo-text-container { padding: 25px; }
    .seo-text-container h2 { font-size: 22px; }
}

/* --- NASIL ÇALIŞIR? (YATAY KARTLAR) --- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.step-card { background: var(--bg-white); padding: 30px 25px; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); border: 1px solid var(--border-color); transition: 0.3s; }
.step-card:hover { transform: translateY(-8px); border-color: var(--brand-purple); }
.step-num {
    background-image: linear-gradient(45deg, #F9CE34, #FF4E50, #E100A4, #8134AF);
    width: 45px; height: 45px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 15px;
}
.step-card h3 { font-size: 17px; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--text-gray); }

@media (max-width: 1024px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 550px) { 
    .steps-grid { grid-template-columns: 1fr; } 
    .step-card { padding: 25px 20px; border-radius: 20px; }
}

/* --- BLOG BİLEŞENİ --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--brand-cyan);
}

.blog-img-wrapper {
    width: 100%;
    height: 220px;
    position: relative;
    background-color: var(--brand-cyan-light);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-img-placeholder {
    font-size: 50px;
    color: var(--brand-cyan);
    opacity: 0.5;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-img-placeholder {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-category {
    display: inline-block;
    background: var(--brand-orange-light);
    color: var(--brand-orange);
    padding: 6px 15px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    align-self: flex-start;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-darkest);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a { color: inherit; }
.blog-title a:hover { color: var(--brand-purple); }

.blog-excerpt {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-cyan);
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    gap: 12px;
    color: var(--brand-purple);
}

@media (max-width: 1024px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .blog-grid { grid-template-columns: 1fr; }
}

/* --- SSS BÖLÜMÜ --- */
.faq-wrap { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-row { background: var(--bg-white); border-radius: var(--radius-md); border: 1px solid var(--border-color); overflow: hidden; transition: 0.3s; }
.faq-q { padding: 20px 25px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 16px; font-weight: 600; gap: 15px;}
.faq-icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--brand-cyan-light); color: var(--brand-cyan); display: flex; align-items: center; justify-content: center; transition: 0.3s; font-size: 12px;}
.faq-row.active .faq-icon { transform: rotate(45deg); background: var(--brand-cyan); color: #fff; }
.faq-a { max-height: 0; padding: 0 25px; color: var(--text-gray); font-size: 14px; transition: all 0.4s ease; opacity: 0; }
.faq-row.active .faq-a { max-height: 200px; padding-bottom: 20px; opacity: 1; }

/* --- FOOTER --- */
footer { background-color: var(--bg-white); padding: 70px 30px 30px; border-top: 1px solid var(--border-color); }
.footer-top { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 40px; }
.f-title { font-size: 17px; font-weight: 700; margin-bottom: 20px; color: var(--text-darkest); }
.f-links li { margin-bottom: 12px; }
.f-links a { font-size: 14px; color: var(--text-gray); transition: 0.2s; }
.f-links a:hover { color: var(--brand-cyan); padding-left: 5px; }

.footer-bottom { text-align: center; padding-top: 25px; border-top: 1px solid var(--border-color); font-size: 13px; color: var(--text-gray); max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center;}

.powered-by { font-weight: 600; color: var(--text-darkest); font-size: 14px; }
.powered-by span { color: var(--brand-purple); }

@media (max-width: 768px) {
    .footer-top { grid-template-columns: 1fr; text-align: center; gap: 35px; }
    .f-links a:hover { padding-left: 0; color: var(--brand-cyan); }
    .footer-bottom { flex-direction: column; gap: 15px; }
    footer { padding: 50px 20px 20px; }
}