/* ============================================================
   CAR TEKLİF — İLETİŞİM SAYFASI
   Kurumsal / premium redesign — logo paleti
   ============================================================ */

:root {
    --ct-blue: #0EA5F0;
    --ct-blue-600: #0B8FD8;
    --ct-navy: #0B2440;
    --ct-navy-700: #0F3357;
    --ct-light: #EAF6FE;
    --ct-ink: #0B2440;
    --ct-muted: #5b6b7d;
    --ct-line: #e6ecf3;
    --ct-grad: linear-gradient(120deg, #0EA5F0 0%, #0B2440 100%);
    --ct-shadow: 0 18px 50px rgba(11, 36, 64, 0.10);
    --ct-shadow-sm: 0 6px 20px rgba(11, 36, 64, 0.07);
    --ct-radius: 20px;
}

.ct-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================ HERO ============================ */
.ct-hero {
    position: relative;
    background: radial-gradient(120% 120% at 85% 0%, #103a63 0%, #0B2440 55%);
    color: #fff;
    padding: 56px 0 130px;
    overflow: hidden;
}

.ct-hero__bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(115deg, transparent 49.3%, rgba(14, 165, 240, 0.55) 49.7%, rgba(14, 165, 240, 0.55) 50.3%, transparent 50.7%),
        linear-gradient(115deg, transparent 64.4%, rgba(255, 255, 255, 0.06) 64.8%, rgba(255, 255, 255, 0.06) 65.4%, transparent 65.8%);
    background-size: 220px 220px, 160px 160px;
    opacity: 0.5;
    mask-image: linear-gradient(90deg, transparent 30%, #000 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 30%, #000 100%);
    pointer-events: none;
}
.ct-hero__bg::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(14, 165, 240, 0.35) 0%, transparent 70%);
    filter: blur(10px);
}

.ct-hero .ct-container { position: relative; z-index: 2; }

.ct-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}
.ct-breadcrumb a { color: rgba(255, 255, 255, 0.75); text-decoration: none; transition: color .2s; }
.ct-breadcrumb a:hover { color: var(--ct-blue); }
.ct-breadcrumb i { font-size: 11px; opacity: .6; }
.ct-breadcrumb span { color: #fff; font-weight: 500; }

.ct-hero__content { max-width: 660px; }

.ct-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(6px);
}
.ct-hero__badge .ct-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--ct-blue);
    box-shadow: 0 0 0 4px rgba(14, 165, 240, 0.25);
    animation: ctPulse 2s infinite;
}
@keyframes ctPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(14, 165, 240, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(14, 165, 240, 0); }
}

.ct-hero__title {
    font-size: clamp(2rem, 4.4vw, 3.25rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 22px 0 16px;
}
.ct-hero__title span {
    background: linear-gradient(90deg, #0EA5F0, #5cc6ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ct-hero__desc {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    max-width: 560px;
    margin: 0;
}

/* ============================ ANA İÇERİK ============================ */
.ct-main {
    background: #f6f9fc;
    padding-bottom: 70px;
}

.ct-grid {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 28px;
    margin-top: -80px;
    position: relative;
    z-index: 5;
    align-items: start;
}

/* ---- FORM KARTI ---- */
.ct-form-card {
    background: #fff;
    border-radius: var(--ct-radius);
    box-shadow: var(--ct-shadow);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.6);
}
.ct-form-card__head { margin-bottom: 26px; }
.ct-form-card__title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--ct-ink);
    letter-spacing: -0.02em;
    margin: 0 0 6px;
}
.ct-form-card__sub { color: var(--ct-muted); font-size: 0.95rem; margin: 0; }

.ct-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.ct-field { margin-bottom: 18px; }
.ct-field label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ct-ink);
    margin-bottom: 8px;
}

.ct-input {
    position: relative;
    display: flex;
    align-items: center;
    background: #f7fafd;
    border: 1.5px solid var(--ct-line);
    border-radius: 12px;
    transition: border-color .2s, box-shadow .2s, background .2s;
}
.ct-input > i {
    position: absolute;
    left: 15px;
    color: #98a7b8;
    font-size: 16px;
    transition: color .2s;
    pointer-events: none;
}
.ct-input--area { align-items: flex-start; }
.ct-input--area > i { top: 15px; }

.ct-input input,
.ct-input textarea {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 14px 16px 14px 44px;
    font-size: 15px;
    color: var(--ct-ink);
    font-family: inherit;
    outline: none;
    border-radius: 12px;
    resize: vertical;
}
.ct-input textarea { min-height: 130px; line-height: 1.6; }
.ct-input input::placeholder,
.ct-input textarea::placeholder { color: #9fb0c0; }

.ct-input:focus-within {
    border-color: var(--ct-blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(14, 165, 240, 0.12);
}
.ct-input:focus-within > i { color: var(--ct-blue); }

.ct-form__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.ct-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ct-grad);
    color: #fff;
    border: 0;
    font-weight: 700;
    font-size: 15px;
    padding: 15px 30px;
    border-radius: 12px;
    cursor: pointer;
    transition: transform .25s, box-shadow .25s;
    box-shadow: 0 10px 24px rgba(14, 165, 240, 0.32);
    position: relative;
    overflow: hidden;
}
.ct-submit::before {
    content: '';
    position: absolute;
    top: 0; left: -120%;
    width: 80%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: skewX(-20deg);
    transition: left .6s ease;
}
.ct-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(14, 165, 240, 0.45); color: #fff; }
.ct-submit:hover::before { left: 130%; }
.ct-submit i { font-size: 1.05em; position: relative; z-index: 1; }
.ct-submit span { position: relative; z-index: 1; }

.ct-form__note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 20px 0 0;
    font-size: 12.5px;
    color: var(--ct-muted);
}
.ct-form__note i { color: var(--ct-blue); font-size: 15px; }

/* ---- ALERTLER ---- */
.ct-alert {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 22px;
}
.ct-alert i { font-size: 18px; flex-shrink: 0; }
.ct-alert--success { background: #e8f8ef; color: #1a7f4b; border: 1px solid #bfe9d2; }
.ct-alert--error { background: #fdecec; color: #c0392b; border: 1px solid #f5c6c6; }

/* ---- SAĞ SÜTUN ---- */
.ct-aside {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
    top: 96px;
}

.ct-info-card {
    position: relative;
    background: linear-gradient(160deg, #0F3357 0%, #0B2440 100%);
    color: #fff;
    border-radius: var(--ct-radius);
    padding: 34px 30px;
    overflow: hidden;
    box-shadow: var(--ct-shadow);
}
.ct-info-card__glow {
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(14, 165, 240, 0.4) 0%, transparent 70%);
    pointer-events: none;
}
.ct-info-card__title {
    position: relative;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}
.ct-info-card__text {
    position: relative;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.92rem;
    margin: 0 0 26px;
}

.ct-info-list {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ct-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.ct-info-ico {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 165, 240, 0.14);
    border: 1px solid rgba(14, 165, 240, 0.25);
    color: var(--ct-blue);
    font-size: 18px;
}
.ct-info-meta { display: flex; flex-direction: column; gap: 2px; padding-top: 2px; }
.ct-info-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}
.ct-info-meta a,
.ct-info-meta p {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
    transition: color .2s;
}
.ct-info-meta a:hover { color: var(--ct-blue); }
.ct-info-meta a { display: block; }

.ct-info-social {
    position: relative;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.ct-info-social > span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    margin-bottom: 12px;
}
.ct-info-social__links { display: flex; gap: 10px; }
.ct-info-social__links a {
    width: 40px; height: 40px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: transform .2s, background .2s;
}
.ct-info-social__links a:hover { background: var(--ct-blue); transform: translateY(-3px); }

/* ---- DEĞERLEME CTA KARTI ---- */
.ct-cta-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--ct-line);
    border-radius: var(--ct-radius);
    padding: 20px 22px;
    text-decoration: none;
    box-shadow: var(--ct-shadow-sm);
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.ct-cta-card:hover {
    transform: translateY(-3px);
    border-color: rgba(14, 165, 240, 0.35);
    box-shadow: 0 16px 36px rgba(14, 165, 240, 0.16);
}
.ct-cta-card__icon {
    flex-shrink: 0;
    width: 50px; height: 50px;
    border-radius: 14px;
    background: var(--ct-grad);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.ct-cta-card__body { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.ct-cta-card__body strong { color: var(--ct-ink); font-size: 14.5px; font-weight: 700; line-height: 1.35; }
.ct-cta-card__body span { color: var(--ct-muted); font-size: 12.5px; }
.ct-cta-card__arrow { color: var(--ct-blue); font-size: 20px; transition: transform .25s; }
.ct-cta-card:hover .ct-cta-card__arrow { transform: translateX(4px); }

/* ============================ HARİTA ============================ */
.ct-mapwrap { background: #f6f9fc; padding-bottom: 80px; }
.ct-map {
    border-radius: var(--ct-radius);
    overflow: hidden;
    box-shadow: var(--ct-shadow);
    border: 6px solid #fff;
    line-height: 0;
}
.ct-map iframe { width: 100%; height: 460px; display: block; border: 0; filter: grayscale(0.15); }

/* ============================ SSS ============================ */
.ct-faq { background: #fff; padding: 80px 0 90px; }
.ct-faq__head { text-align: center; max-width: 620px; margin: 0 auto 44px; }
.ct-faq__tag {
    display: inline-block;
    background: var(--ct-light);
    color: var(--ct-blue-600);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 14px;
}
.ct-faq__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--ct-ink);
    letter-spacing: -0.02em;
    margin: 0 0 10px;
}
.ct-faq__sub { color: var(--ct-muted); font-size: 1rem; margin: 0; }

.ct-faq__list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.ct-faq__item {
    border: 1.5px solid var(--ct-line);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .25s, box-shadow .25s;
    background: #fff;
}
.ct-faq__item:hover { border-color: rgba(14, 165, 240, 0.3); }
.ct-faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    background: transparent;
    border: 0;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--ct-ink);
    cursor: pointer;
    transition: color .2s;
}
.ct-faq__q i {
    flex-shrink: 0;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--ct-light);
    color: var(--ct-blue-600);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform .3s, background .25s, color .25s;
}
.ct-faq__q[aria-expanded="true"] { color: var(--ct-blue-600); }
.ct-faq__q[aria-expanded="true"] i {
    transform: rotate(45deg);
    background: var(--ct-grad);
    color: #fff;
}
.ct-faq__a {
    padding: 0 24px 22px;
    color: var(--ct-muted);
    font-size: 15px;
    line-height: 1.75;
}

/* ============================ RESPONSIVE ============================ */
@media (max-width: 991px) {
    .ct-grid { grid-template-columns: 1fr; gap: 22px; }
    .ct-aside { position: static; }
    .ct-hero { padding: 44px 0 120px; }
}
@media (max-width: 767px) {
    .ct-container { padding: 0 18px; }
    .ct-form-card { padding: 28px 22px; }
    .ct-form__row { grid-template-columns: 1fr; gap: 0; }
    .ct-grid { margin-top: -84px; }
    .ct-form__footer { flex-direction: column; align-items: stretch; }
    .ct-submit { justify-content: center; }
    .ct-info-card { padding: 28px 22px; }
    .ct-map iframe { height: 340px; }
    .ct-faq { padding: 56px 0 64px; }
}
@media (max-width: 575px) {
    .ct-hero__title { font-size: 1.9rem; }
    .ct-faq__q { padding: 16px 18px; font-size: 15px; }
    .ct-faq__a { padding: 0 18px 18px; }
}
