/* ===========================================
   CONTACT PAGE — Vitasso İletişim  (Clean)
   Minimal, readable design
   =========================================== */

/* ── Breadcrumb ── */
.ct-breadcrumb-bar {
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    padding: 12px 0;
    font-size: 13px;
    color: #9ca3af;
}
.ct-breadcrumb-bar a {
    color: #6b7280;
    text-decoration: none;
}
.ct-breadcrumb-bar a:hover { color: #14a3a8; }
.ct-breadcrumb-bar span { margin: 0 6px; }

/* ── Page ── */
.ct-page { padding: 40px 0 56px; }

.ct-page-header {
    margin-bottom: 36px;
}
.ct-page-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}
.ct-page-header p {
    font-size: 15px;
    color: #6b7280;
}

/* ── Layout ── */
.ct-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 36px;
    align-items: start;
}

/* ── Cards ── */
.ct-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px;
}
.ct-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f3f4f6;
}

/* ── Info List ── */
.ct-info-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ct-info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.ct-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.ct-info-item > i {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #f0fdfa;
    color: #14a3a8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.ct-info-item strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 2px;
}
.ct-info-item a,
.ct-info-item p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    text-decoration: none;
    margin: 0;
}
.ct-info-item a:hover { color: #14a3a8; }

/* ── Socials ── */
.ct-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.ct-socials a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #6b7280;
    text-decoration: none;
    transition: all .2s;
}
.ct-socials a:hover {
    color: #fff;
    border-color: #14a3a8;
    background: #14a3a8;
}

/* ── Map ── */
.ct-map-card { padding: 0; overflow: hidden; }
.ct-map-frame iframe {
    width: 100%;
    height: 200px;
    border: 0;
    display: block;
}

/* ── Form ── */
.ct-form-col { position: sticky; top: 20px; align-self: start; }

.ct-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.ct-field {
    margin-bottom: 16px;
}
.ct-field > label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}
.ct-req { color: #ef4444; }
.ct-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: #1f2937;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    box-sizing: border-box;
}
.ct-input:focus {
    border-color: #14a3a8;
    box-shadow: 0 0 0 3px rgba(20,163,168,.08);
}
.ct-input::placeholder { color: #c0c5ce; }
.ct-input.ct-invalid { border-color: #ef4444; }
.ct-input.ct-invalid:focus { box-shadow: 0 0 0 3px rgba(239,68,68,.08); }

.ct-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 36px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%236b7280'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.ct-textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}
.ct-field-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
}
.ct-counter { font-size: 12px; color: #9ca3af; }
.ct-counter.ct-warn { color: #ef4444; }
.ct-error {
    font-size: 12px;
    color: #ef4444;
    display: none;
    margin-top: 4px;
}
.ct-error.ct-show { display: block; }

/* ── Checkbox ── */
.ct-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: #374151;
    line-height: 1.5;
    position: relative;
}
.ct-checkbox input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.ct-check {
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s;
    margin-top: 2px;
}
.ct-checkbox input:checked ~ .ct-check {
    background: #14a3a8;
    border-color: #14a3a8;
}
.ct-checkbox input:checked ~ .ct-check::after {
    content: '\2713';
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}
.ct-checkbox a {
    color: #14a3a8;
    font-weight: 600;
    text-decoration: none;
}
.ct-checkbox a:hover { text-decoration: underline; }

/* ── Button ── */
.ct-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    background: #14a3a8;
    color: #fff;
    transition: background .2s, box-shadow .2s;
    margin-top: 4px;
}
.ct-btn:hover:not(:disabled) {
    background: #0d7377;
    box-shadow: 0 4px 14px rgba(20,163,168,.25);
}
.ct-btn:disabled { opacity: .6; cursor: not-allowed; }
.ct-btn-loading { display: none; align-items: center; gap: 8px; }
.ct-btn.ct-loading .ct-btn-text { display: none; }
.ct-btn.ct-loading .ct-btn-loading { display: flex; }
.ct-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: ctSpin .6s linear infinite;
}
@keyframes ctSpin { to { transform: rotate(360deg); } }

/* ── Alert ── */
.ct-alert {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ct-alert.ct-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.ct-alert.ct-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ── FAQ ── */
.ct-faq {
    padding: 48px 0;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
}
.ct-faq-title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 28px;
}
.ct-faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ct-faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}
.ct-faq-q {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    gap: 12px;
    user-select: none;
}
.ct-faq-q i {
    font-size: 18px;
    color: #9ca3af;
    transition: transform .25s;
    flex-shrink: 0;
}
.ct-faq-item.ct-faq-open .ct-faq-q i { transform: rotate(45deg); }
.ct-faq-item.ct-faq-open { border-color: #14a3a8; }
.ct-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}
.ct-faq-a-inner {
    padding: 0 18px 14px;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.7;
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .ct-layout { grid-template-columns: 1fr; }
    .ct-form-col { position: static; order: -1; }
}
@media (max-width: 768px) {
    .ct-page { padding: 28px 0 40px; }
    .ct-page-header h1 { font-size: 24px; }
    .ct-row { grid-template-columns: 1fr; }
    .ct-card { padding: 22px 18px; }
}
@media (max-width: 480px) {
    .ct-page-header h1 { font-size: 20px; }
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .ct-layout { grid-template-columns: 1fr; }
    .ct-form-col { position: static; }
}
@media (max-width: 768px) {
    .ct-hero { padding: 36px 0 32px; }
    .ct-hero h1 { font-size: 24px; }
    .ct-hero-icon { width: 56px; height: 56px; font-size: 26px; border-radius: 14px; }
    .ct-stats-bar { flex-direction: column; gap: 12px; align-items: center; margin-top: -20px; padding: 16px; }
    .ct-info-cards { grid-template-columns: 1fr; }
    .ct-form-row { grid-template-columns: 1fr; }
    .ct-form-card { padding: 22px 18px; }
    .ct-faq-grid { grid-template-columns: 1fr; }
    .ct-layout { padding: 28px 0 40px; }
}
@media (max-width: 480px) {
    .ct-hero h1 { font-size: 20px; }
    .ct-hero p { font-size: 13px; }
    .ct-stats-bar { font-size: 12px; }
}
