:root {
    --brand-color: #4f46e5;
    --navy: #0f172a;
    --slate: #64748b;
    --border: #e2e8f0;
    --glass-bg: rgba(255, 255, 255, 0.85);
}

/* Header Boşluğunu Sıfırlama ve Genel Arka Plan */
.contact-page-portal {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    padding-top: 0 !important;
    margin-top: 0 !important;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.portal-bg-accent {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.08) 0%, transparent 70%);
}

.portal-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 130px 40px 80px; /* Header yüksekliğine göre üstten pay */
    position: relative;
    z-index: 5;
}

/* Grid Düzeni */
.contact-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

/* Sidebar - Bilgi Alanı */
.sidebar-intro .badge {
    background: #e0e7ff;
    color: var(--brand-color);
    font-weight: 800;
    font-size: 11px;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 1.5px;
}

.sidebar-intro h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--navy);
    margin: 20px 0;
    line-height: 1.1;
}

.sidebar-intro h1 span { color: var(--brand-color); }

.info-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 40px 0;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card:hover {
    transform: translateX(10px);
    border-color: var(--brand-color);
    background: #fff;
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.05);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-color);
    font-size: 20px;
}

.details h3 { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.details p, .details a { color: var(--slate); font-size: 14px; text-decoration: none; }
.details span { font-size: 12px; color: #94a3b8; }

/* Sosyal Medya */
.social-wrapper label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 42px;
    height: 42px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--navy);
    color: white;
    transform: translateY(-5px);
}

/* Form Penceresi (Dashboard Style) */
.form-window {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
}

.window-header {
    background: #f8fafc;
    padding: 15px 25px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dots { display: flex; gap: 6px; }
.dots span { width: 10px; height: 10px; border-radius: 50%; }
.r { background: #ff5f57; } .y { background: #ffbd2e; } .g { background: #28c840; }

.window-title { font-size: 12px; font-weight: 700; color: #94a3b8; text-transform: uppercase; }

.window-content { padding: 45px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.input-group { margin-bottom: 25px; }
.input-group label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }

.input-group input, .input-group textarea {
    width: 100%;
    padding: 15px 18px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fcfcfc;
    font-family: inherit;
    transition: 0.3s;
}

.input-group input:focus, .input-group textarea:focus {
    border-color: var(--brand-color);
    background: white;
    outline: none;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.btn-portal-submit {
    width: 100%;
    padding: 18px;
    background: var(--navy);
    color: white;
    border: none;
    border-radius: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-portal-submit:hover {
    background: var(--brand-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.25);
}

/* Harita Penceresi */
.map-window {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.map-bar { padding: 15px 25px; font-weight: 700; font-size: 14px; color: var(--navy); }
.map-window iframe { width: 100%; height: 400px; border: none; display: block; }

@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; }
    .portal-container { padding-top: 100px; }
}
/* ========================================================= */
/* ARALİS GLOBAL – İLETİŞİM PORTALI (GÜNCEL & PREMIUM)       */
/* ========================================================= */

:root {
    --brand-orange: #FF8C3E;
    --brand-navy: #001e3c;
    --brand-navy-lite: #002b56;
    --text-slate: #64748b;
    --bg-portal: #f8fafc; /* Hakkımızda sayfası ile aynı zemin */
    --border-color: rgba(0, 30, 60, 0.08);
}

.contact-page-portal {
    background: var(--bg-portal);
    padding-top: 0 !important;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* Arka Plan Dekoratif Işıltı */
.portal-bg-accent {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 140, 62, 0.06) 0%, transparent 70%);
    z-index: 1;
}

.portal-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 140px 24px 80px;
    position: relative;
    z-index: 5;
}

/* Grid Düzeni */
.contact-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 70px;
    align-items: start;
    margin-bottom: 60px;
}

/* --- SOL SİDEBAR --- */
.sidebar-intro .badge {
    background: rgba(255, 140, 62, 0.1);
    color: var(--brand-orange);
    font-weight: 800;
    font-size: 11px;
    padding: 8px 18px;
    border-radius: 50px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.sidebar-intro h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--brand-navy);
    margin: 25px 0;
    line-height: 1;
    letter-spacing: -2px;
}

.sidebar-intro h1 span { color: var(--brand-orange); }

.info-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 40px 0;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.info-card:hover {
    transform: translateX(12px);
    border-color: var(--brand-orange);
    box-shadow: 0 20px 40px rgba(0, 30, 60, 0.05);
}

.icon-box {
    width: 54px;
    height: 54px;
    background: var(--bg-portal);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-orange);
    font-size: 22px;
    transition: 0.3s;
}

.info-card:hover .icon-box {
    background: var(--brand-orange);
    color: #fff;
}

.details h3 { font-size: 15px; font-weight: 700; color: var(--brand-navy); margin-bottom: 4px; }
.details p, .details a { color: var(--text-slate); font-size: 14px; text-decoration: none; }

/* --- FORM PENCERESİ (DASHBOARD STYLE) --- */
.form-window {
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 30, 60, 0.08);
    border: 1px solid var(--border-color);
}

.window-header {
    background: #fff;
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dots { display: flex; gap: 8px; }
.dots span { width: 12px; height: 12px; border-radius: 50%; }
.r { background: #ff5f57; } .y { background: #ffbd2e; } .g { background: #28c840; }

.window-content { padding: 50px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

.input-group label { 
    display: block; 
    font-size: 13px; 
    font-weight: 700; 
    color: var(--brand-navy); 
    margin-bottom: 10px; 
}

.input-group input, .input-group textarea {
    width: 100%;
    padding: 16px 20px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    background: #fcfcfc;
    transition: all 0.3s;
}

.input-group input:focus, .input-group textarea:focus {
    border-color: var(--brand-orange);
    background: white;
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 140, 62, 0.1);
}

.btn-portal-submit {
    width: 100%;
    padding: 20px;
    background: var(--brand-navy);
    color: white;
    border: none;
    border-radius: 16px;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: 0.4s;
}

.btn-portal-submit:hover {
    background: var(--brand-orange);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(255, 140, 62, 0.3);
}

/* --- HARİTA --- */
.map-window {
    background: white;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

.map-bar { padding: 20px 30px; font-weight: 800; color: var(--brand-navy); background: #fff; border-bottom: 1px solid var(--border-color); }
.map-window iframe { width: 100%; height: 450px; border: none; filter: grayscale(0.2); }

@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; }
    .sidebar-intro { text-align: center; }
    .sidebar-intro h1 { font-size: 36px; }
    .form-row { grid-template-columns: 1fr; }
}