/* ==========================================
   KONTAKT SAYFASI - DKRUG RENK PALETI
   Modern, Sade, Lüks
   ========================================== */

/* --- CSS Variables (Palette) --- */
:root {
    --dk-primary: #1a1a1a;
    --dk-secondary: #f5f0eb;
    --dk-accent: #b1996c;
    --dk-accent-hover: #b8945a;
    --dk-text: #333333;
    --dk-text-light: #666666;
    --dk-white: #ffffff;
    --dk-border: #e8e4df;
    --dk-radius: 12px;
    --dk-radius-sm: 8px;
    --dk-shadow: 0 4px 24px rgba(0,0,0,0.08);
    --dk-shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
    --dk-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --dk-font-heading: 'Playfair Display', Georgia, serif;
    --dk-font-body: 'Inter', -apple-system, sans-serif;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.contact-hero {
    background: var(--dk-secondary);
    padding: 80px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--dk-accent), transparent);
}

.contact-hero-inner {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-eyebrow {
    display: inline-block;
    font-family: var(--dk-font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dk-accent);
    margin-bottom: 16px;
    padding: 6px 16px;
    border: 1px solid var(--dk-accent);
    border-radius: 20px;
}

.contact-title {
    font-family: var(--dk-font-heading);
    font-size: 48px;
    font-weight: 600;
    color: var(--dk-primary);
    margin: 0 0 16px 0;
    line-height: 1.1;
}

.contact-subtitle {
    font-family: var(--dk-font-body);
    font-size: 17px;
    color: var(--dk-text-light);
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

/* ==========================================
   ANA LAYOUT
   ========================================== */
.contact-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

/* ==========================================
   KARTLAR (Form + Map)
   ========================================== */
.contact-card {
    background: var(--dk-white);
    border: 1px solid var(--dk-border);
    border-radius: var(--dk-radius);
    padding: 32px;
    margin-bottom: 24px;
    transition: var(--dk-transition);
}

.contact-card:hover {
    box-shadow: var(--dk-shadow);
    transform: translateY(-2px);
}

.card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--dk-border);
}

.card-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dk-secondary);
    border-radius: var(--dk-radius-sm);
    flex-shrink: 0;
}

.card-title {
    font-family: var(--dk-font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--dk-primary);
    margin: 0 0 4px 0;
}

.card-desc {
    font-family: var(--dk-font-body);
    font-size: 14px;
    color: var(--dk-text-light);
    margin: 0;
}

/* ==========================================
   FORM
   ========================================== */
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    font-family: var(--dk-font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--dk-text);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--dk-border);
    border-radius: var(--dk-radius-sm);
    font-family: var(--dk-font-body);
    font-size: 14px;
    color: var(--dk-text);
    background: var(--dk-white);
    transition: var(--dk-transition);
    box-sizing: border-box;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #b8b3ad;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--dk-accent);
    box-shadow: 0 0 0 3px rgba(177, 153, 108, 0.15);
}

.form-field textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

/* Submit Butonu */
.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 32px;
    background: var(--dk-primary);
    color: var(--dk-white);
    border: none;
    border-radius: var(--dk-radius-sm);
    font-family: var(--dk-font-body);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--dk-transition);
    margin-top: 8px;
}

.submit-btn:hover {
    background: var(--dk-accent);
    transform: translateY(-1px);
    box-shadow: var(--dk-shadow);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn svg {
    transition: transform 0.3s ease;
}

.submit-btn:hover svg {
    transform: translateX(3px);
}

/* ==========================================
   HARITA
   ========================================== */
.map-wrapper {
    width: 100%;
    height: 280px;
    border-radius: var(--dk-radius-sm);
    overflow: hidden;
    border: 1px solid var(--dk-border);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(20%) contrast(95%);
    transition: filter 0.4s ease;
}

.map-wrapper:hover iframe {
    filter: grayscale(0%) contrast(100%);
}

/* ==========================================
   SAĞ SIDEBAR - BİLGİ KARTLARI
   ========================================== */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 24px;
}

.info-card {
    background: var(--dk-white);
    border: 1px solid var(--dk-border);
    border-radius: var(--dk-radius);
    padding: 24px;
    transition: var(--dk-transition);
}

.info-card:hover {
    box-shadow: var(--dk-shadow);
    border-color: var(--dk-accent);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.info-icon {
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dk-secondary);
    border-radius: 50%;
}

.info-card-header h3 {
    font-family: var(--dk-font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--dk-primary);
    margin: 0;
}

.info-card-body {
    padding-left: 52px;
}

.info-link {
    display: block;
    font-family: var(--dk-font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--dk-accent);
    text-decoration: none;
    margin-bottom: 4px;
    transition: color 0.2s ease;
}

.info-link:hover {
    color: var(--dk-accent-hover);
    text-decoration: underline;
}

.info-address {
    font-family: var(--dk-font-body);
    font-size: 14px;
    color: var(--dk-text);
    line-height: 1.7;
    margin: 0 0 4px 0;
}

.info-meta {
    display: block;
    font-family: var(--dk-font-body);
    font-size: 12px;
    color: var(--dk-text-light);
    letter-spacing: 0.3px;
}

.info-text {
    font-family: var(--dk-font-body);
    font-size: 14px;
    color: var(--dk-text-light);
    line-height: 1.6;
    margin: 0;
}

/* Vurgulu kart */
.highlight-card {
    background: var(--dk-primary);
    border-color: var(--dk-primary);
    color: var(--dk-white);
}

.highlight-card .info-card-header h3 {
    color: var(--dk-white);
}

.highlight-card .info-icon {
    background: rgba(255,255,255,0.1);
}

.highlight-card .info-text {
    color: rgba(255,255,255,0.8);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .highlight-card {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 20px 40px;
    }

    .contact-title {
        font-size: 36px;
    }

    .contact-subtitle {
        font-size: 15px;
    }

    .contact-main {
        padding: 40px 16px;
    }

    .contact-card {
        padding: 24px;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-sidebar {
        grid-template-columns: 1fr;
    }

    .highlight-card {
        grid-column: span 1;
    }

    .card-title {
        font-size: 20px;
    }

    .map-wrapper {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 28px;
    }

    .contact-eyebrow {
        font-size: 11px;
        padding: 4px 12px;
    }

    .info-card-body {
        padding-left: 0;
        padding-top: 12px;
    }

    .info-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}