/*
Theme Name: Turnitin Raporu
Theme URI: https://turnitinraporu.com
Author: Turnitin Raporu
Description: Turnitin Raporu sitesi için özel WordPress teması
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: turnitinraporu
*/

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

:root {
    --primary: #10B981;
    --primary-light: #34D399;
    --primary-dark: #059669;
    --turnitin-blue: #2476B6;
    --turnitin-red: #E3222B;
    --bg: #ffffff;
    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    --text: #1e293b;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --shadow: rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo .blue { color: var(--turnitin-blue); }
.logo .red { color: var(--turnitin-red); }

.nav-links { display: flex; gap: 32px; }
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--primary); }

.header-cta {
    background: var(--primary);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.header-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

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

/* Hero */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 968px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
    50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

.hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text);
}

.hero h1 .gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
@media (max-width: 968px) { .hero-buttons { justify-content: center; } }

.btn {
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background: #fff;
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Report Card */
.hero-visual { position: relative; }
@media (max-width: 968px) { .hero-visual { display: none; } }

.report-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 20px 60px var(--shadow);
}

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.report-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 18px;
}

.report-status {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.score-section { text-align: center; padding: 20px 0; }

.score-ring {
    width: 140px;
    height: 140px;
    margin: 0 auto 16px;
    position: relative;
}

.score-ring svg { transform: rotate(-90deg); width: 100%; height: 100%; }
.score-ring .bg { fill: none; stroke: var(--border); stroke-width: 10; }
.score-ring .progress { 
    fill: none; 
    stroke: var(--primary); 
    stroke-width: 10; 
    stroke-linecap: round;
    stroke-dasharray: 377;
    stroke-dashoffset: 60;
}

.score-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 38px;
    font-weight: 800;
    color: var(--text);
}

.score-value span { font-size: 18px; color: var(--text-muted); }
.score-label { color: var(--text-muted); font-size: 14px; }

.report-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.report-stat {
    background: var(--bg-light);
    padding: 14px 8px;
    border-radius: 12px;
    text-align: center;
}

.report-stat-value { font-size: 18px; font-weight: 700; color: var(--text); }
.report-stat-label { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* Stats */
.stats-bar {
    padding: 50px 0;
    background: var(--bg-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

.stat-item { text-align: center; }
.stat-value { font-size: 42px; font-weight: 800; color: var(--primary); }
.stat-label { font-size: 14px; color: var(--text-muted); margin-top: 4px; }

/* Services */
.services { padding: 100px 0; }

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text);
}

.section-header p { font-size: 17px; color: var(--text-muted); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 36px;
    transition: all 0.3s;
    position: relative;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 50px rgba(16, 185, 129, 0.12);
    transform: translateY(-4px);
}

.service-card.featured { border-color: var(--primary); }

.service-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--primary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
}

.service-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.service-card > p { color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }

.service-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }

.service-feature {
    background: var(--bg-light);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-feature svg { color: var(--primary); width: 14px; height: 14px; }

.service-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.price-amount { font-size: 42px; font-weight: 800; color: var(--primary); }
.price-currency { font-size: 20px; color: var(--primary); }
.price-period { font-size: 15px; color: var(--text-muted); }

/* Order */
.order-section { padding: 100px 0; background: var(--bg-light); }

.order-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 968px) { .order-wrapper { grid-template-columns: 1fr; } }

.order-info h2 { font-size: 34px; font-weight: 800; margin-bottom: 16px; }
.order-info > p { color: var(--text-muted); font-size: 16px; margin-bottom: 36px; line-height: 1.8; }

.order-steps { display: flex; flex-direction: column; gap: 20px; }

.order-step { display: flex; gap: 16px; align-items: flex-start; }

.step-num {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}

.step-content h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.step-content p { color: var(--text-muted); font-size: 14px; }

.order-form {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 10px 40px var(--shadow);
}

.form-header { margin-bottom: 28px; }
.form-header h3 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.form-header p { color: var(--text-muted); font-size: 14px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; }

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text);
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

.file-upload {
    border: 2px dashed var(--border);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--bg-light);
}

.file-upload:hover { border-color: var(--primary); background: rgba(16, 185, 129, 0.03); }
.file-upload input { display: none; }
.file-upload-icon { font-size: 36px; margin-bottom: 10px; }
.file-upload p { color: var(--text-muted); font-size: 14px; }
.file-upload strong { color: var(--primary); }

.form-total {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-total span { color: var(--text-muted); }
.form-total strong { font-size: 26px; color: var(--primary); }

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-submit:hover {
    background: var(--primary-dark);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.form-secure {
    text-align: center;
    margin-top: 14px;
    color: var(--text-muted);
    font-size: 13px;
}

/* How It Works */
.how-it-works { padding: 100px 0; }

.steps-container { max-width: 700px; margin: 0 auto; }

.step-row {
    display: flex;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
}

.step-row:last-child { border-bottom: none; }

@media (max-width: 600px) { .step-row { flex-direction: column; gap: 16px; } }

.step-number {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.step-body { flex: 1; }
.step-body h4 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.step-body p { color: var(--text-muted); font-size: 15px; line-height: 1.7; }

.step-tag {
    display: inline-block;
    margin-top: 12px;
    background: var(--bg-light);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

/* Trust */
.trust { padding: 100px 0; background: var(--bg-light); }

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 768px) { .trust-grid { grid-template-columns: 1fr; } }

.trust-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
}

.trust-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px var(--shadow); }

.trust-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--bg-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.trust-card h4 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.trust-card p { color: var(--text-muted); line-height: 1.6; font-size: 15px; }

/* FAQ */
.faq { padding: 100px 0; }

.faq-container { max-width: 700px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
    width: 100%;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--text);
    font-size: 17px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.3s;
}

.faq-question:hover { color: var(--primary); }

.faq-icon {
    width: 28px;
    height: 28px;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer { max-height: 0; overflow: hidden; transition: all 0.4s; }
.faq-item.active .faq-answer { max-height: 200px; padding-bottom: 24px; }
.faq-answer p { color: var(--text-muted); line-height: 1.7; }

/* Contact */
.contact { padding: 100px 0; background: var(--bg-light); }

.contact-wrapper { max-width: 550px; margin: 0 auto; text-align: center; }
.contact-wrapper h2 { font-size: 34px; font-weight: 800; margin-bottom: 12px; }
.contact-wrapper > p { color: var(--text-muted); font-size: 17px; margin-bottom: 40px; }

.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) { .contact-cards { grid-template-columns: 1fr; } }

.contact-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.contact-card:hover { border-color: var(--primary); transform: translateY(-3px); }

.contact-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.contact-card-icon.whatsapp { background: rgba(37, 211, 102, 0.1); }
.contact-card-icon.email { background: rgba(16, 185, 129, 0.1); }

.contact-card h5 { font-size: 17px; font-weight: 700; }
.contact-card span { font-size: 13px; color: var(--text-muted); }

/* Footer */
footer { padding: 50px 0 24px; border-top: 1px solid var(--border); }

.footer-content { display: flex; flex-direction: column; align-items: center; gap: 24px; }

.footer-logo { font-size: 22px; font-weight: 800; text-decoration: none; }
.footer-logo .blue { color: var(--turnitin-blue); }
.footer-logo .red { color: var(--turnitin-red); }

.footer-links { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.3s; }
.footer-links a:hover { color: var(--primary); }

.footer-copy { color: var(--text-muted); font-size: 13px; }
.footer-disclaimer { color: var(--text-muted); font-size: 11px; max-width: 600px; text-align: center; margin-top: 16px; }

/* WhatsApp */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 999; }

.whatsapp-float a {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
}

.whatsapp-float a:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* Blog Styles */
.blog-section { padding: 100px 0; }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media (max-width: 968px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px var(--shadow);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--bg-light);
}

.blog-card-content { padding: 24px; }

.blog-card-category {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card h3 a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card h3 a:hover { color: var(--primary); }

.blog-card-excerpt {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}

/* Single Blog Post */
.single-post { padding: 150px 0 100px; }

.single-post-container { max-width: 800px; margin: 0 auto; }

.single-post h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.single-post-meta {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.single-post-content {
    font-size: 17px;
    line-height: 1.8;
}

.single-post-content p { margin-bottom: 20px; }
.single-post-content h2 { font-size: 28px; margin: 40px 0 20px; }
.single-post-content h3 { font-size: 22px; margin: 30px 0 15px; }
.single-post-content ul, .single-post-content ol { margin: 20px 0; padding-left: 30px; }
.single-post-content li { margin-bottom: 10px; }
.single-post-content img { max-width: 100%; height: auto; border-radius: 12px; margin: 30px 0; }

/* Blog Archive */
.blog-archive { padding: 150px 0 100px; }

.blog-archive h1 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 60px;
}

.pagination a, .pagination span {
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.pagination a {
    background: var(--bg-light);
    color: var(--text);
    border: 1px solid var(--border);
}

.pagination a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.pagination .current {
    background: var(--primary);
    color: #fff;
}
