* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: #0A2540;
    color: white;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 24px;
}

.hamburger {
    display: none;
    color: white;
    font-size: 1.6rem;
    cursor: pointer;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #00D4C8;
}

.btn-cta {
    background: #00D4C8;
    color: #0A2540;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #0A2540 0%, #1E3A8A 100%);
    color: white;
    padding: 160px 0 120px;
    text-align: center;
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero h1 span {
    color: #00D4C8;
}

.hero p {
    font-size: 1.35rem;
    max-width: 850px;
    margin: 0 auto 40px;
}

.hero-buttons {
    margin: 40px 0;
}

.btn-primary {
    background: #00D4C8;
    color: #0A2540;
    padding: 18px 40px;
    font-size: 1.15rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin: 0 10px;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #00D4C8;
    padding: 18px 40px;
    font-size: 1.15rem;
    border-radius: 50px;
    text-decoration: none;
    margin: 0 10px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.trust-badges span {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    padding: 10px 14px;
}

/* Genel Section */
.section {
    padding: 100px 0;
}

.section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: #0A2540;
}

.bg-light {
    background: #f1f5f9;
}

.bg-dark {
    background: #0A2540;
    color: white;
}

.bg-dark h2 {
    color: white;
}

/* Hizmetler Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 25px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h3 {
    margin: 20px 0 15px;
    color: #0A2540;
}

.section-intro {
    color: #475569;
    font-size: 1.2rem;
    line-height: 1.8;
    margin: -30px auto 45px;
    max-width: 900px;
    text-align: center;
}

.process-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 34px;
}

.process-highlight > div {
    background: linear-gradient(135deg, #0A2540, #123D63);
    border-radius: 14px;
    color: white;
    padding: 34px;
}

.process-highlight h3 {
    font-size: 1.55rem;
    margin: 12px 0;
}

.process-highlight p {
    color: #d7e4ef;
    font-size: 1.05rem;
}

.stat-number {
    color: #00D4C8;
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.timeline-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.06);
    padding: 26px;
}

.timeline-card span {
    color: #00A99D;
    font-size: 1.4rem;
    font-weight: 800;
}

.timeline-card h3 {
    color: #0A2540;
    margin: 10px 0;
}

.timeline-card p {
    color: #475569;
}

.process-note {
    background: #e6fffb;
    border-left: 4px solid #00A99D;
    border-radius: 8px;
    color: #075e58;
    font-weight: 600;
    margin-top: 30px;
    padding: 18px 20px;
}

.section-cta {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.network-grid,
.checklist-grid,
.press-grid,
.expertise-grid,
.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.network-card,
.check-item,
.press-card,
.expertise-card,
.knowledge-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.06);
    padding: 26px;
}

.network-card i,
.check-item i,
.expertise-card i {
    color: #00A99D;
    font-size: 2rem;
    margin-bottom: 16px;
}

.network-card h3,
.check-item h3,
.press-card h3,
.expertise-card h3,
.knowledge-card h3 {
    color: #0A2540;
    margin-bottom: 10px;
}

.network-card p,
.check-item p,
.press-card p,
.expertise-card p,
.knowledge-card p {
    color: #475569;
}

.knowledge-card span {
    background: #e6fffb;
    border-radius: 999px;
    color: #075e58;
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 14px;
    padding: 6px 12px;
}

.press-card {
    color: inherit;
    display: block;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.press-card:hover {
    box-shadow: 0 12px 26px rgba(0,0,0,0.1);
    transform: translateY(-6px);
}

.press-card span {
    background: #e6fffb;
    border-radius: 999px;
    color: #075e58;
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 14px;
    padding: 6px 12px;
}

.report-preview {
    background: #0A2540;
    border-radius: 14px;
    box-shadow: 0 12px 34px rgba(10,37,64,0.2);
    color: white;
    margin: 0 auto;
    max-width: 900px;
    overflow: hidden;
}

.report-line {
    display: grid;
    gap: 8px;
    grid-template-columns: 220px 1fr;
    padding: 22px 26px;
}

.report-line + .report-line {
    border-top: 1px solid rgba(255,255,255,0.12);
}

.report-line span {
    color: #00D4C8;
    font-weight: 800;
}

.report-line strong {
    color: #eaf6fb;
    font-weight: 600;
}

.faq-grid {
    display: grid;
    gap: 16px;
    margin: 0 auto;
    max-width: 950px;
}

.faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.05);
    padding: 20px 24px;
}

.faq-item summary {
    color: #0A2540;
    cursor: pointer;
    font-size: 1.13rem;
    font-weight: 800;
}

.faq-item p {
    color: #475569;
    margin-top: 14px;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 24px;
}

.trust-panel,
.office-card,
.policy-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 30px;
}

.trust-panel i {
    color: #00A99D;
    font-size: 2.3rem;
    margin-bottom: 18px;
}

.trust-panel h3,
.office-card h3,
.policy-card h3 {
    color: #0A2540;
    margin-bottom: 12px;
}

.trust-panel p,
.office-card p,
.policy-card p,
.policy-card li {
    color: #475569;
}

.trust-panel a,
.footer a {
    color: #00D4C8;
    font-weight: 700;
    text-decoration: none;
}

.office-card span {
    background: #e6fffb;
    border-radius: 999px;
    color: #075e58;
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 14px;
    padding: 6px 12px;
}

.office-card small {
    color: #64748b;
    display: block;
    margin-top: 14px;
}

.policy-layout {
    display: grid;
    gap: 22px;
    margin: 0 auto;
    max-width: 980px;
}

.policy-card ul {
    margin-left: 20px;
}

.policy-card li {
    margin: 8px 0;
}

/* Dolandırıcılık Listesi */
.warning-list {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
}

.warning-list li {
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
}

.warning-text {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 500;
    color: #d32f2f;
}

/* İletişim Form */
.contact-form {
    max-width: 820px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1.1rem;
}

.contact-form button {
    padding: 18px;
    font-size: 1.2rem;
    cursor: pointer;
}

.file-upload {
    background: rgba(255,255,255,0.08);
    border: 1px dashed rgba(255,255,255,0.45);
    border-radius: 8px;
    color: white;
    cursor: pointer;
    display: grid;
    gap: 6px;
    padding: 18px;
    text-align: center;
    transition: all 0.3s;
}

.file-upload:hover {
    background: rgba(255,255,255,0.14);
    border-color: #00D4C8;
}

.file-upload i {
    color: #00D4C8;
    font-size: 1.6rem;
}

.file-upload small {
    color: #d7e4ef;
}

.contact-form input[type="file"] {
    display: none;
}

.file-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.file-list span {
    background: rgba(0,212,200,0.14);
    border: 1px solid rgba(0,212,200,0.35);
    border-radius: 999px;
    color: white;
    font-size: 0.95rem;
    padding: 8px 12px;
}

.success-grid,
.complaints-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.success-card,
.complaint-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 28px;
}

.success-card .amount {
    color: #00A99D;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.success-card small,
.complaint-card small {
    color: #64748b;
    display: block;
    margin-top: 16px;
}

.note,
.source-note {
    color: #64748b;
    font-size: 0.98rem;
    margin: 35px auto 0;
    max-width: 900px;
    text-align: center;
}

.complaint-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.complaint-card h3 {
    color: #0A2540;
    font-size: 1.25rem;
}

.complaint-card a {
    align-self: flex-start;
    color: #0A2540;
    font-weight: 700;
    margin-top: auto;
    text-decoration: none;
}

.complaint-card a:hover {
    color: #00A99D;
}

.complaint-tag {
    align-self: flex-start;
    background: #e6fffb;
    border: 1px solid #9ee7df;
    border-radius: 999px;
    color: #075e58;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 6px 12px;
}

.what-we-do {
    background: white;
    border-radius: 14px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    margin-top: 60px;
    padding: 42px;
}

.what-we-do h2 {
    margin-bottom: 30px;
}

.what-we-do ul {
    list-style: none;
    margin: 0 auto;
    max-width: 820px;
}

.what-we-do li {
    border-bottom: 1px solid #e2e8f0;
    font-size: 1.12rem;
    padding: 13px 0;
}

.highlight {
    color: #0A2540;
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 28px;
    text-align: center;
}

.complaint-cta {
    display: block;
    margin: 28px auto 0;
    max-width: 280px;
    text-align: center;
}

/* Footer */
.footer {
    background: #0A2540;
    color: white;
    text-align: center;
    padding: 50px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.8rem; }
    .navbar .container { gap: 18px; }
    .navbar ul {
        background: #0A2540;
        display: none;
        flex-direction: column;
        gap: 16px;
        left: 0;
        padding: 20px;
        position: absolute;
        right: 0;
        top: 100%;
    }
    .navbar ul.active { display: flex; }
    .hamburger { display: block; }
    .btn-cta { display: none; }
    .section { padding: 70px 0; }
    .form-row,
    .about-grid,
    .about-features,
    .process-highlight,
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .hero-buttons {
        display: grid;
        gap: 14px;
    }
    .btn-primary,
    .btn-secondary {
        margin: 0;
        text-align: center;
    }
    .report-line {
        grid-template-columns: 1fr;
    }
    .what-we-do {
        padding: 28px 20px;
    }
}
/* Hakkımızda Özel Stil */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.about-text p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.feature-item {
    background: white;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.feature-item i {
    font-size: 2.8rem;
    color: #00D4C8;
    margin-bottom: 15px;
}

.mission {
    margin-top: 70px;
    padding: 40px;
    background: linear-gradient(135deg, #0A2540, #1E3A8A);
    color: white;
    border-radius: 20px;
    text-align: center;
    font-size: 1.3rem;
}
/* LOGO BOYUT KONTROLÜ */
.main-logo {
    height: 52px;           /* Ana boyut buradan ayarlanır */
    width: auto;
    max-width: 220px;
    transition: all 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05);
}

/* Mobil için daha küçük */
@media (max-width: 768px) {
    .main-logo {
        height: 42px;
    }
}

/* Navbar'da logo ile diğer elemanların dengesi */
.navbar .logo {
    flex-shrink: 0;
}
/* FLOATING WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7);
}

/* Scroll Reveal Animasyon */
.section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}
