/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
}

body {
    color: #1e293b;
    background-color: #f8fafc;
    line-height: 1.6;
}

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

/* Renk Paleti ve Değişkenler */
:root {
    --primary: #0f172a;
    --accent: #f59e0b;
    --accent-hover: #d97706;
    --whatsapp: #25d366;
    --whatsapp-hover: #20ba5a;
    --light: #ffffff;
    --gray: #64748b;
    --border: #e2e8f0;
}

/* Header */
.header {
    background: var(--light);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-btn {
    background: var(--primary);
    color: var(--light) !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600 !important;
}

.nav-btn:hover {
    opacity: 0.9;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--light);
    padding: 80px 0;
}

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

.badge {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.hero-text h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    color: #94a3b8;
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Butonlar */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
}

.btn-primary:hover {
    background: var(--accent-hover);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--light);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-hover);
}

.full-width {
    width: 100%;
    justify-content: center;
}

/* Form Kartı */
.hero-card {
    background: var(--light);
    color: var(--primary);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.card-header h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.card-header p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

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

.form-group input, .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    outline: none;
    font-size: 15px;
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--accent);
}

/* Section Başlıkları */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--gray);
    font-size: 16px;
}

/* Hizmetler Bölümü */
.services {
    padding: 80px 0;
}

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

.service-card {
    background: var(--light);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--border);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.service-card.popular {
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.1);
}

.service-card.full-span {
    grid-column: span 3;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--light);
    border: none;
}

.special-card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.service-card.full-span p {
    color: #94a3b8;
    margin-bottom: 0;
}

.service-card.full-span h3 {
    color: var(--light);
    margin-bottom: 5px;
}

.service-card.full-span .icon-box {
    background: rgba(245, 158, 11, 0.2);
}

.pop-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-card ul li {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card ul li i {
    color: var(--whatsapp);
}

.card-link {
    text-decoration: none;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.card-link:hover {
    color: var(--accent);
}

/* Süreç Bölümü */
.process {
    background: var(--light);
    padding: 80px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.process-step {
    text-align: center;
    padding: 20px;
}

.step-num {
    font-size: 40px;
    font-weight: 800;
    color: rgba(245, 158, 11, 0.2);
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--gray);
    font-size: 14px;
}

/* Neden Biz Bölümü */
.why-us {
    padding: 80px 0;
}

.why-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-text h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.why-text > p {
    color: var(--gray);
    margin-bottom: 30px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-item i {
    font-size: 24px;
    color: var(--accent);
    background: rgba(245, 158, 11, 0.1);
    padding: 15px;
    border-radius: 12px;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.feature-item p {
    color: var(--gray);
    font-size: 14px;
}

.why-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-box {
    background: var(--light);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border);
}

.stat-box h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-box p {
    color: var(--gray);
    font-weight: 600;
}

/* CTA Bölümü */
.cta-section {
    background: var(--primary);
    padding: 60px 0;
    text-align: center;
    color: var(--light);
}

.cta-box h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-box p {
    color: #94a3b8;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-outline {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--light);
}

/* Footer */
.footer {
    background: #090d16;
    color: #64748b;
    padding: 30px 0;
    font-size: 14px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #64748b;
    font-size: 18px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent);
}

/* Responsive Tasarım */
@media (max-width: 968px) {
    .hero-content, .why-container, .services-grid, .process-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.full-span {
        grid-column: span 1;
    }

    .special-card-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-links {
        display: none; 
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
}