:root {
    --c-bg: #f8fafc;
    --c-surface: #ffffff;
    --c-border: #e2e8f0;
    --c-text-main: #0f172a;
    --c-text-muted: #64748b;
    --c-brand: #2563eb; 
    --c-brand-dark: #1e3a8a;
    --c-accent: #3b82f6;
}

body {
    background-color: var(--c-bg);
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    color: var(--c-text-main);
}

/* 1. HERO SECTION (DARK MODE) */
.contact-hero {
    position: relative; padding: 160px 0 100px; text-align: center;
    background: #0f172a; 
    overflow: hidden; 
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hero-blob {
    position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.25; pointer-events: none;
}
.hb-1 { top: -100px; left: -100px; width: 600px; height: 600px; background: #3b82f6; } 
.hb-2 { top: 50px; right: -100px; width: 500px; height: 500px; background: #8b5cf6; } 

.hero-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255, 255, 255, 0.05); 
    padding: 8px 20px; border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1); 
    color: #60a5fa; 
    font-weight: 700; font-size: 0.85rem; margin-bottom: 25px;
    backdrop-filter: blur(10px);
}
.pulse-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2); animation: pulse 2s infinite; }

.hero-title {
    font-size: 3.5rem; lg:font-size: 4.5rem; font-weight: 800; letter-spacing: -1.5px;
    line-height: 1.1; margin-bottom: 20px; 
    color: white; 
}
.hero-title span { color: #60a5fa; } 

.hero-desc { 
    font-size: 1.25rem; 
    color: #94a3b8; 
    max-width: 42rem; margin-left: auto; margin-right: auto; font-weight: 400; 
}

/* 2. CONTACT OPTIONS (GRID) */
.options-section { 
    max-width: 1200px; 
    margin: -50px auto 80px; 
    /* DÜZELTME: px-6 yerine standart padding eklendi */
    padding-left: 1.5rem; 
    padding-right: 1.5rem; 
    position: relative; 
    z-index: 10; 
}
.options-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.opt-card {
    background: white; border: 1px solid var(--c-border); border-radius: 20px;
    padding: 35px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; flex-direction: column; gap: 15px; position: relative; overflow: hidden;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.05);
}
.opt-card:hover { transform: translateY(-5px); border-color: var(--c-brand); box-shadow: 0 20px 50px -10px rgba(37, 99, 235, 0.1); }

.opt-icon {
    width: 50px; height: 50px; background: #eff6ff; color: var(--c-brand); border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem; transition: 0.3s;
}
.opt-card:hover .opt-icon { background: var(--c-brand); color: white; }

.opt-title { font-size: 1.25rem; font-weight: 700; color: var(--c-text-main); }
.opt-desc { font-size: 0.95rem; color: var(--c-text-muted); line-height: 1.6; margin-bottom: 10px; }

.opt-link {
    font-weight: 700; color: var(--c-brand); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; font-size: 0.95rem;
}
.opt-link:hover { gap: 12px; ; }

/* 3. MAIN CONTENT (FORM & INFO) */
.main-split {
    max-width: 1200px; margin: 0 auto 100px;
    /* DÜZELTME: Container padding eklendi */
    padding-left: 1.5rem; padding-right: 1.5rem;
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px;
    align-items: start;
}

/* Form Container */
.form-box {
    background: white; padding: 50px; border-radius: 24px;
    border: 1px solid var(--c-border); box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.form-header { margin-bottom: 30px; }
.fh-title { font-size: 2rem; font-weight: 800; margin-bottom: 10px; }
.fh-sub { color: var(--c-text-muted); }

.input-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }

.modern-input {
    width: 100%; padding: 16px; border: 1px solid var(--c-border); border-radius: 10px;
    background: #f8fafc; font-size: 1rem; color: var(--c-text-main); outline: none; transition: 0.3s;
    font-family: 'Plus Jakarta Sans', sans-serif;
    box-sizing: border-box; /* Input taşmalarını engeller */
}
.modern-input:focus { border-color: var(--c-brand); background: white; box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1); }
.modern-textarea { height: 150px; resize: none; }

.send-btn {
    width: 100%; padding: 18px; background: var(--c-text-main); color: white;
    border: none; border-radius: 10px; font-weight: 700; font-size: 1rem; cursor: pointer;
    transition: 0.3s; display: flex; justify-content: center; align-items: center; gap: 10px;
}
.send-btn:hover { background: var(--c-brand); transform: translateY(-2px); }

/* Info Side */
.info-wrapper { display: flex; flex-direction: column; gap: 30px; }

/* Map Card */
.map-card {
    background: white; border-radius: 24px; overflow: hidden; height: 350px;
    border: 1px solid var(--c-border); position: relative;
}
.map-overlay {
    position: absolute; bottom: 20px; left: 20px; right: 20px;
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px);
    padding: 20px; border-radius: 16px; border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 15px;
}
.mo-icon {
    width: 45px; height: 45px; background: #fff7ed; color: #ea580c; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}

/* Contact Details List */
.contact-list {
    background: white; border: 1px solid var(--c-border); border-radius: 24px; padding: 30px;
}
.cl-item {
    display: flex; align-items: flex-start; gap: 20px; padding-bottom: 20px; margin-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}
.cl-item:last-child { border: none; padding: 0; margin: 0; }
.cl-icon {
    width: 40px; height: 40px; background: #f1f5f9; border-radius: 50%; color: var(--c-text-muted);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cl-content h5 { font-size: 0.9rem; font-weight: 700; color: var(--c-text-muted); text-transform: uppercase; margin-bottom: 5px; }
.cl-content p { font-size: 1rem; font-weight: 600; color: var(--c-text-main); line-height: 1.5; }
.cl-link { color: var(--c-brand); text-decoration: none; transition: 0.2s; }

/* Trust Badge */
.trust-badge {
    background: #ecfdf5; border: 1px solid #d1fae5; border-radius: 16px; padding: 20px;
    display: flex; align-items: center; gap: 15px;
}
.tb-num { font-size: 1.5rem; font-weight: 800; color: #059669; }
.tb-text { font-size: 0.9rem; font-weight: 600; color: #047857; line-height: 1.2; }

/* RESPONSIVE AYARLAR */
@media (max-width: 1024px) {
    .options-grid { grid-template-columns: 1fr; }
    .main-split { grid-template-columns: 1fr; }
    .map-card { order: -1; }
    .hero-title { font-size: 2.5rem; }
}

/* DÜZELTME: Ekstra Mobil Ayarlar (Telefonlar için) */
@media (max-width: 768px) {
    .contact-hero { padding: 120px 0 60px; }
    
    /* Mobilde formun iç boşluğunu azalt, böylece inputlar sıkışmaz */
    .form-box { padding: 30px 20px; }
    
    /* Mobilde Ad Soyad ve Email gibi yan yana olanları alt alta al */
    .input-grid { grid-template-columns: 1fr; gap: 15px; }
    
    /* Ana başlık mobilde çok büyükse biraz daha küçült */
    .hero-title { font-size: 2rem; }
    
    /* Kartların sağ sol boşluklarını mobilde biraz kıs */
    .options-section, .main-split { padding-left: 20px; padding-right: 20px; }
}