/* Network Community — ana PHP scriptindeki özgün iletişim sayfası */
body.page-template-contact .main,
body.page-template-page-templatescontact-php .main {
    background: #f8f9fa;
}

.contact-section-new {
    padding: calc(var(--header-height) + 22px) 0 100px;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(320px, 400px) minmax(0, 1fr);
    gap: 50px;
    align-items: start;
}

.contact-info-panel,
.contact-form-panel {
    min-width: 0;
}

.info-card-premium {
    background: #fff;
    min-height: 120px;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform .3s ease, box-shadow .3s ease;
}

.info-card-premium:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.info-icon {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    background: rgba(215, 38, 56, 0.1);
    color: var(--retro-red);
    border-radius: 15px;
    display: grid;
    place-items: center;
}

.info-icon svg,
.field-icon svg,
.social-box svg,
.btn-submit-premium svg,
.footer .social-links svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.info-text {
    min-width: 0;
}

.info-text span {
    display: block;
    font-size: .8rem;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 5px;
}

.info-text a,
.info-text p {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
    overflow-wrap: anywhere;
}

.social-connect {
    margin-top: 40px;
    padding: 0 10px;
}

.social-connect h2 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 0 20px;
}

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

.social-box {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #1a1a2e;
    transition: all .3s ease;
}

.social-box svg {
    width: 21px;
    height: 21px;
}

.social-box:hover {
    background: var(--retro-red);
    color: #fff;
    border-color: var(--retro-red);
    transform: translateY(-5px);
}

.social-box.is-placeholder {
    cursor: default;
}

.social-box.is-placeholder:hover {
    background: #fff;
    color: #1a1a2e;
    border-color: #eee;
    transform: none;
}

.form-container-card {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin: 0 0 10px;
}

.form-subtitle {
    color: var(--color-text-muted);
    margin: 0 0 40px;
    font-size: 1.1rem;
}

.premium-form .form-row-2 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.form-field-group {
    margin-bottom: 25px;
    min-width: 0;
}

.form-row-2 .form-field-group {
    margin-bottom: 0;
}

.field-label {
    display: block;
    font-size: .9rem;
    font-weight: 700;
    color: #444;
    margin-bottom: 10px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.field-icon {
    position: absolute;
    left: 20px;
    z-index: 2;
    display: grid;
    place-items: center;
    color: #aaa;
    pointer-events: none;
    transition: color .3s ease;
}

.field-icon svg {
    width: 21px;
    height: 21px;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    min-width: 0;
    padding: 16px 20px 16px 55px;
    background: #fcfcfc;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    font: inherit;
    font-size: 1rem;
    color: var(--color-text);
    transition: all .3s ease;
    outline: none;
    box-shadow: none;
}

.input-wrapper select {
    appearance: auto;
}

.input-wrapper textarea {
    min-height: 130px;
    padding-left: 20px;
    resize: vertical;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    border-color: var(--retro-red);
    background: #fff;
    box-shadow: 0 5px 15px rgba(215, 38, 56, 0.05);
}

.input-wrapper:focus-within .field-icon {
    color: var(--retro-red);
}

.btn-submit-premium {
    width: 100%;
    background: var(--retro-red);
    color: #fff;
    border: 0;
    padding: 20px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all .3s ease;
    margin-top: 20px;
    box-shadow: 0 10px 20px rgba(215, 38, 56, 0.2);
}

.btn-submit-premium svg {
    width: 20px;
    height: 20px;
}

.btn-submit-premium:hover {
    background: #b51f2e;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(215, 38, 56, 0.3);
}

.error-alert {
    background: #fff5f5;
    border: 1px solid #feb2b2;
    color: #c53030;
    padding: 15px 20px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.success-screen {
    text-align: center;
    padding: 40px 0;
}

.success-icon {
    font-size: 5rem;
    line-height: 1;
    color: #48bb78;
    margin-bottom: 20px;
}

.success-screen h1 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.success-screen p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.nac-hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 992px) {
    .contact-section-new {
        padding-top: calc(var(--header-height) + 30px);
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .form-container-card {
        padding: 34px;
    }
}

@media (max-width: 600px) {
    .contact-section-new {
        padding: calc(var(--header-height) + 20px) 0 70px;
    }
    .premium-form .form-row-2 {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }
    .form-row-2 .form-field-group {
        margin-bottom: 22px;
    }
    .info-card-premium {
        min-height: 0;
        padding: 22px;
        gap: 15px;
    }
    .info-icon {
        flex-basis: 50px;
        width: 50px;
        height: 50px;
    }
    .form-container-card {
        padding: 28px 20px;
        border-radius: 22px;
    }
    .form-title {
        font-size: 1.9rem;
    }
}
