/**
 * İletişim sayfası — modern, açıklayıcı arayüz
 */

.contact-page-container.ctc-page,
.ctc-page {
    max-width: 1100px;
    margin: 32px auto 48px;
    padding: 0 20px 24px;
    color: var(--color-text, var(--text-primary, #fff));
}

.ctc-page-header {
    background: linear-gradient(135deg, rgba(80, 80, 80, 0.1) 0%, rgba(160, 160, 160, 0.05) 100%);
    border: 2px solid rgba(80, 80, 80, 0.3);
    border-radius: 20px;
    padding: 28px 32px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.ctc-page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #06b6d4 0%, #a3a3a3 50%, #3b82f6 100%);
}

.ctc-page-header-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
    position: relative;
    z-index: 1;
}

.ctc-page-header-info h1 {
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary, #fff);
}

.ctc-page-header-info h1 i {
    color: #22d3ee;
    font-size: 28px;
}

.ctc-page-header-info p {
    margin: 0;
    max-width: 580px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-secondary, rgba(255,255,255,0.65));
}

.ctc-header-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ctc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 650;
    font-size: 13px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: 0.22s ease;
    white-space: nowrap;
}

.ctc-btn.primary {
    background: linear-gradient(135deg, #06b6d4 0%, #0284c7 100%);
    color: #fff;
    border-color: rgba(6, 182, 212, 0.45);
}

.ctc-btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(6, 182, 212, 0.3);
    color: #fff;
}

.ctc-btn.secondary {
    background: rgba(120, 120, 120, 0.15);
    border-color: rgba(120, 120, 120, 0.35);
    color: #a3a3a3;
}

.ctc-btn.secondary:hover {
    color: #fff;
    border-color: rgba(160, 160, 160, 0.5);
}

/* Next / info */
.ctc-next-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    margin-bottom: 16px;
    border-radius: 16px;
    border: 2px solid rgba(80, 80, 80, 0.25);
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.92) 0%, rgba(15, 15, 15, 0.95) 100%);
}

.ctc-next-box.tone-success {
    border-color: rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(28, 28, 28, 0.9) 100%);
}

.ctc-next-box.tone-info {
    border-color: rgba(6, 182, 212, 0.35);
}

.ctc-next-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: rgba(6, 182, 212, 0.18);
    color: #22d3ee;
}

.ctc-next-box.tone-success .ctc-next-icon {
    background: rgba(16, 185, 129, 0.18);
    color: #34d399;
}

.ctc-next-title {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 750;
    color: var(--text-primary, #fff);
}

.ctc-next-text {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary, rgba(255,255,255,0.65));
}

.ctc-info-box {
    background: linear-gradient(135deg, rgba(80, 80, 80, 0.1) 0%, rgba(160, 160, 160, 0.05) 100%);
    border: 2px solid rgba(80, 80, 80, 0.2);
    border-radius: 16px;
    padding: 20px 22px;
    margin-bottom: 20px;
}

.ctc-info-layout {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.ctc-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 182, 212, 0.15);
    color: #22d3ee;
    font-size: 20px;
}

.ctc-info-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary, #fff);
}

.ctc-info-title i { color: #22d3ee; }

.ctc-info-text {
    margin: 0 0 16px;
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-secondary, rgba(255,255,255,0.65));
}

.ctc-process-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.ctc-step {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(120, 120, 120, 0.2);
}

.ctc-step-num {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    background: rgba(6, 182, 212, 0.2);
    color: #22d3ee;
}

.ctc-step strong {
    display: block;
    font-size: 13px;
    color: var(--text-primary, #fff);
    margin-bottom: 2px;
}

.ctc-step span {
    font-size: 12px;
    color: var(--text-secondary, rgba(255,255,255,0.55));
    line-height: 1.4;
}

/* Alerts */
.ctc-alert {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    margin-bottom: 18px;
    border-radius: 14px;
    border: 1px solid transparent;
}

.ctc-alert-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}

.ctc-alert.success {
    background: rgba(22, 163, 74, 0.12);
    border-color: rgba(22, 163, 74, 0.35);
    color: #86efac;
}

.ctc-alert.success .ctc-alert-icon { background: #16a34a; }

.ctc-alert.error {
    background: rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.3);
    color: #fca5a5;
}

.ctc-alert.error .ctc-alert-icon { background: #dc2626; }

.ctc-alert strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text-primary, #fff);
}

.ctc-alert p {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: var(--text-secondary, rgba(255,255,255,0.7));
}

/* Layout */
.ctc-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
    gap: 18px;
    align-items: start;
    margin-bottom: 28px;
}

.ctc-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ctc-card {
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
    border: 1px solid rgba(160, 160, 160, 0.22);
    border-radius: 16px;
    padding: 22px;
}

.ctc-card-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.ctc-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(6, 182, 212, 0.18);
    color: #22d3ee;
    font-size: 16px;
}

.ctc-card-icon.info { background: rgba(59, 130, 246, 0.18); color: #60a5fa; }
.ctc-card-icon.clock { background: rgba(245, 158, 11, 0.18); color: #fbbf24; }
.ctc-card-icon.social { background: rgba(168, 85, 247, 0.18); color: #c084fc; }

.ctc-card-title {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 750;
    color: var(--text-primary, #fff);
}

.ctc-card-sub {
    margin: 0;
    font-size: 13px;
    color: var(--text-secondary, rgba(255,255,255,0.55));
    line-height: 1.4;
}

/* Form */
.ctc-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ctc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.ctc-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 650;
    color: var(--text-primary, #fff);
    margin-bottom: 6px;
}

.ctc-form-group .required,
.required {
    color: #f87171;
}

.ctc-input.form-input,
.ctc-input.form-select,
.ctc-input.form-textarea,
.ctc-form .form-input,
.ctc-form .form-select,
.ctc-form .form-textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 11px;
    border: 1px solid rgba(120, 120, 120, 0.35);
    background: rgba(10, 10, 10, 0.85) !important;
    color: var(--text-primary, #fff) !important;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.ctc-form .form-textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.5;
}

.ctc-form .form-input:focus,
.ctc-form .form-select:focus,
.ctc-form .form-textarea:focus {
    border-color: rgba(6, 182, 212, 0.6) !important;
}

.ctc-hint {
    margin: 6px 0 0;
    font-size: 12px;
    color: var(--text-secondary, rgba(255,255,255,0.55));
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.4;
}

.ctc-hint i {
    margin-top: 2px;
    color: #6b6b6b;
}

.ctc-char-count,
.form-char-count {
    margin-top: 6px;
    font-size: 12px;
    color: var(--text-secondary, rgba(255,255,255,0.5));
    text-align: right;
}

.ctc-submit.contact-submit-btn,
.contact-submit-btn.ctc-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 18px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #06b6d4 0%, #0284c7 100%) !important;
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: 0.22s ease;
}

.ctc-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(6, 182, 212, 0.35);
}

/* Side info */
.ctc-info-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ctc-info-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.ctc-info-ico {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 15px;
}

.ctc-info-ico.email { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.ctc-info-ico.phone { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.ctc-info-ico.address { background: rgba(249, 115, 22, 0.15); color: #fb923c; }

.ctc-info-label {
    font-size: 11px;
    font-weight: 650;
    text-transform: uppercase;
    letter-spacing: 0.35px;
    color: var(--text-secondary, rgba(255,255,255,0.5));
    margin-bottom: 3px;
}

.ctc-info-value {
    font-size: 14px;
    font-weight: 650;
    color: var(--text-primary, #fff);
    text-decoration: none;
    word-break: break-word;
}

a.ctc-info-value:hover { color: #22d3ee; }

.ctc-info-value.static {
    font-weight: 500;
    line-height: 1.45;
}

.ctc-info-note {
    margin-top: 4px;
    font-size: 11px;
    color: var(--text-secondary, rgba(255,255,255,0.45));
    display: flex;
    align-items: center;
    gap: 5px;
}

.ctc-hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}

.ctc-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(120, 120, 120, 0.2);
    font-size: 13px;
}

.ctc-hours-item span {
    color: var(--text-secondary, rgba(255,255,255,0.65));
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ctc-hours-item strong {
    color: var(--text-primary, #fff);
}

.ctc-hours-note {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 12px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.25);
    font-size: 12px;
    line-height: 1.45;
    color: var(--text-secondary, rgba(255,255,255,0.7));
}

.ctc-hours-note i { color: #fbbf24; margin-top: 2px; }

.ctc-social-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ctc-social {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 11px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 650;
    color: #fff;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(120, 120, 120, 0.25);
    transition: 0.2s ease;
}

.ctc-social:hover {
    border-color: rgba(160, 160, 160, 0.45);
    color: #fff;
}

.ctc-social.facebook:hover { border-color: rgba(59, 130, 246, 0.5); }
.ctc-social.twitter:hover { border-color: rgba(56, 189, 248, 0.5); }
.ctc-social.instagram:hover { border-color: rgba(236, 72, 153, 0.5); }
.ctc-social.discord:hover { border-color: rgba(129, 140, 248, 0.5); }

/* FAQ */
.ctc-faq {
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.92) 0%, rgba(15, 15, 15, 0.95) 100%);
    border: 1px solid rgba(160, 160, 160, 0.2);
    border-radius: 18px;
    padding: 28px;
}

.ctc-faq-head {
    margin-bottom: 20px;
}

.ctc-faq-head h2 {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary, #fff);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ctc-faq-head h2 i { color: #22d3ee; }

.ctc-faq-head p {
    margin: 0;
    font-size: 13px;
    color: var(--text-secondary, rgba(255,255,255,0.55));
}

.ctc-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.ctc-faq-item {
    padding: 16px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(120, 120, 120, 0.2);
}

.ctc-faq-ico {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    background: rgba(6, 182, 212, 0.15);
    color: #22d3ee;
    font-size: 15px;
}

.ctc-faq-item h3 {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary, #fff);
    line-height: 1.35;
}

.ctc-faq-item p {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-secondary, rgba(255,255,255,0.6));
}

.ctc-faq-footer {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.2);
    font-size: 13px;
    line-height: 1.45;
    color: var(--text-secondary, rgba(255,255,255,0.7));
}

.ctc-faq-footer i { color: #22d3ee; margin-top: 2px; }

.ctc-faq-footer a {
    color: #22d3ee;
    font-weight: 650;
    text-decoration: none;
}

.ctc-faq-footer a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 960px) {
    .ctc-layout {
        grid-template-columns: 1fr;
    }
    .ctc-process-steps,
    .ctc-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ctc-page { margin: 20px auto 36px; padding: 0 14px 20px; }
    .ctc-page-header { padding: 22px 18px; }
    .ctc-page-header-info h1 { font-size: 22px; }
    .ctc-form-row { grid-template-columns: 1fr; }
    .ctc-header-actions { width: 100%; }
    .ctc-header-actions .ctc-btn { flex: 1; }
    .ctc-faq { padding: 20px 16px; }
}

@media (max-width: 480px) {
    .ctc-faq-grid { grid-template-columns: 1fr; }
}
