/* /public_html/css/iletisim.css */
/* FAFUER — İletişim sayfası v1 */

:root {
    --ct-black: #050505;
    --ct-black-2: #0d0d0f;
    --ct-black-3: #141417;

    --ct-white: #ffffff;
    --ct-white-soft: #f5f5f7;
    --ct-white-soft-2: #fbfbfd;

    --ct-text-dark: #1d1d1f;
    --ct-text-dark-soft: #4b5563;
    --ct-text-dark-faint: #6e6e73;

    --ct-text-light: #f5f5f7;
    --ct-text-light-soft: rgba(245, 245, 247, .82);
    --ct-text-light-faint: rgba(245, 245, 247, .58);

    --ct-line-dark: rgba(255, 255, 255, .08);
    --ct-line-light: rgba(17, 17, 17, .08);

    --ct-shadow-soft: 0 16px 40px rgba(0, 0, 0, .08);
    --ct-shadow-mid: 0 24px 70px rgba(0, 0, 0, .14);
    --ct-shadow-strong: 0 36px 110px rgba(0, 0, 0, .22);

    --ct-radius-sm: 18px;
    --ct-radius-md: 24px;
    --ct-radius-lg: 34px;
    --ct-radius-xl: 42px;
    --ct-radius-pill: 999px;

    --ct-container: 1360px;
    --ct-header-h: 92px;
    --ct-speed: .28s ease;
}

/* RESET */
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    background: #050505;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", "Segoe UI", sans-serif;
}

.site-shell,
.contact-page {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.contact-page *,
.contact-page *::before,
.contact-page *::after {
    box-sizing: border-box;
}

.contact-page {
    min-height: 100svh;
    min-height: 100dvh;
    background: var(--ct-black);
    color: var(--ct-text-light);
    overflow-x: clip;
}

.contact-page img,
.contact-page video,
.contact-page iframe {
    display: block;
    max-width: 100%;
}

.contact-page a {
    color: inherit;
    text-decoration: none;
}

.contact-page main,
.contact-page section,
.contact-page header,
.contact-page footer {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.contact-page .container {
    width: min(calc(100% - 48px), var(--ct-container));
    max-width: var(--ct-container);
    margin-inline: auto;
}

.contact-page .skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-page .skip-link:focus {
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: 12px 16px;
    border-radius: 14px;
    background: #111;
    color: #fff;
    box-shadow: var(--ct-shadow-soft);
    z-index: 9999;
}

.contact-page .section-label {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.contact-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 22px;
    border-radius: var(--ct-radius-pill);
    font-size: 15px;
    font-weight: 700;
    transition: transform var(--ct-speed), background var(--ct-speed), border-color var(--ct-speed), color var(--ct-speed);
    border: 1px solid transparent;
    cursor: pointer;
}

.contact-page .btn:hover {
    transform: translateY(-1px);
}

.contact-page .btn-primary {
    background: #fff;
    color: #111;
}

.contact-page .btn-primary:hover {
    background: #f0f0f0;
}

.contact-page .btn-secondary {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .14);
}

.contact-page .btn-secondary:hover {
    background: rgba(255, 255, 255, .12);
}

/* HEADER */
.contact-page .site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 120;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .18) 100%);
    backdrop-filter: saturate(160%) blur(18px);
    -webkit-backdrop-filter: saturate(160%) blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.contact-page .header-row {
    min-height: var(--ct-header-h);
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr) 84px;
    align-items: center;
    gap: 18px;
}

.contact-page .header-balance {
    width: 84px;
    height: 44px;
}

.contact-page .header-center {
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
}

.contact-page .brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-page .brand-center {
    justify-self: center;
}

.contact-page .brand-logo-main {
    width: auto;
    height: 68px;
    object-fit: contain;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, .12));
}

.contact-page .main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 0;
}

.contact-page .main-nav-left {
    justify-content: flex-end;
}

.contact-page .main-nav-right {
    justify-content: flex-start;
}

.contact-page .main-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: var(--ct-radius-pill);
    color: var(--ct-text-light-soft);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -.01em;
    white-space: nowrap;
    transition: color var(--ct-speed), background var(--ct-speed), transform var(--ct-speed);
}

.contact-page .main-nav a:hover,
.contact-page .main-nav a[aria-current="page"] {
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

.contact-page .header-actions {
    width: 84px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    position: relative;
}

.contact-page .nav-login-icon,
.contact-page .nav-user-trigger {
    width: 44px;
    height: 44px;
    border-radius: var(--ct-radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .10);
    overflow: hidden;
    padding: 0;
}

.contact-page .nav-login-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.contact-page .nav-user {
    position: relative;
}

.contact-page .nav-user-avatar {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.contact-page .nav-user-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    min-width: 240px;
    padding: 10px;
    border-radius: 20px;
    background: rgba(15, 15, 17, .96);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: var(--ct-shadow-strong);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity var(--ct-speed), visibility var(--ct-speed), transform var(--ct-speed);
}

.contact-page .nav-user.is-open .nav-user-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-page .nav-user-card {
    padding: 12px 14px 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .05);
    margin-bottom: 6px;
}

.contact-page .nav-user-card strong {
    display: block;
    font-size: 14px;
    line-height: 1.2;
}

.contact-page .nav-user-card span {
    display: block;
    margin-top: 4px;
    color: var(--ct-text-light-faint);
    font-size: 12px;
    text-transform: capitalize;
}

.contact-page .nav-user-menu-item {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--ct-text-light-soft);
    font-size: 14px;
    font-weight: 600;
}

.contact-page .nav-user-menu-item:hover {
    background: rgba(255, 255, 255, .06);
    color: #fff;
}

.contact-page .nav-user-menu-logout {
    color: #ff9a9a;
}

.contact-page .nav-toggle,
.contact-page .nav-toggle-label,
.contact-page .mobile-nav-shell {
    display: none;
}

/* MAIN */
.contact-page .ct-main {
    padding-top: var(--ct-header-h);
}

/* HERO */
.contact-page .ct-hero {
    position: relative;
    background:
        radial-gradient(circle at 18% 18%, rgba(124, 58, 237, .18), transparent 34%),
        radial-gradient(circle at 82% 22%, rgba(34, 211, 238, .16), transparent 34%),
        linear-gradient(180deg, #07080d 0%, #0a0c14 48%, #0d1018 100%);
    overflow: hidden;
}

.contact-page .ct-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .04) 0%, rgba(255, 255, 255, 0) 30%),
        radial-gradient(circle at center, rgba(255, 255, 255, .03) 0%, rgba(255, 255, 255, 0) 60%);
    pointer-events: none;
}

.contact-page .ct-hero-inner {
    position: relative;
    z-index: 2;
    min-height: clamp(360px, 54svh, 560px);
    min-height: clamp(360px, 54dvh, 560px);
    display: flex;
    align-items: center;
    padding-top: calc(28px + env(safe-area-inset-top));
    padding-bottom: 28px;
}

.contact-page .ct-hero-copy {
    max-width: 920px;
}

.contact-page .ct-hero-copy h1 {
    margin: 0;
    max-width: 12ch;
    font-size: clamp(38px, 6vw, 78px);
    line-height: .96;
    letter-spacing: -.06em;
    font-weight: 700;
    color: #fff;
}

.contact-page .ct-hero-lead {
    margin: 18px 0 0;
    max-width: 60ch;
    color: var(--ct-text-light-soft);
    font-size: 18px;
    line-height: 1.72;
}

/* LIGHT / DARK */
.contact-page .ct-light {
    background: var(--ct-white-soft);
    color: var(--ct-text-dark);
}

.contact-page .ct-dark {
    background: var(--ct-black);
    color: var(--ct-text-light);
}

/* OFFICES */
.contact-page .ct-offices {
    padding: 74px 0;
}

.contact-page .ct-offices-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.contact-page .ct-office-card {
    padding: 22px;
    border-radius: 32px;
    background: #fff;
    box-shadow: var(--ct-shadow-soft);
    overflow: hidden;
}

.contact-page .ct-office-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.contact-page .ct-office-head h2 {
    margin: 0;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.06;
    letter-spacing: -.04em;
    color: var(--ct-text-dark);
}

.contact-page .ct-office-actions-top {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.contact-page .mini-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(17, 17, 17, .10);
    background: rgba(17, 17, 17, .03);
    color: var(--ct-text-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -.01em;
    transition: transform var(--ct-speed), border-color var(--ct-speed), background var(--ct-speed);
    white-space: nowrap;
}

.contact-page .mini-btn:hover {
    transform: translateY(-1px);
    background: rgba(17, 17, 17, .05);
}

.contact-page .mini-btn-accent {
    color: #fff;
    border-color: rgba(34, 197, 94, .34);
    background:
        radial-gradient(circle at 18% 18%, rgba(34, 197, 94, .28), transparent 60%),
        linear-gradient(135deg, rgba(16, 185, 129, .88), rgba(34, 197, 94, .92));
}

.contact-page .ct-map-wrap {
    height: 330px;
    border-radius: 24px;
    overflow: hidden;
    background: #dfe5ee;
    border: 1px solid rgba(17, 17, 17, .08);
}

.contact-page .ct-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-page .ct-address {
    margin: 14px 0 0;
    color: var(--ct-text-dark-soft);
    font-size: 15px;
    line-height: 1.66;
}

.contact-page .ct-address strong {
    color: var(--ct-text-dark);
}

.contact-page .ct-rep-list {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.contact-page .ct-rep {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 20px;
    background: #f8f9fc;
    border: 1px solid rgba(17, 17, 17, .06);
}

.contact-page .ct-rep.empty {
    background: #fafafa;
}

.contact-page .ct-rep-avatar {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    object-fit: cover;
    object-position: center;
    flex: 0 0 auto;
    border: 1px solid rgba(17, 17, 17, .08);
    background: #eef2f7;
}

.contact-page .ct-rep-main {
    flex: 1 1 auto;
    min-width: 0;
}

.contact-page .ct-rep-name {
    color: var(--ct-text-dark);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.25;
}

.contact-page .ct-rep-sub {
    margin-top: 3px;
    color: var(--ct-text-dark-faint);
    font-size: 13px;
    line-height: 1.4;
}

.contact-page .ct-rep-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.contact-page .mini-btn-accent:hover {
    background:
        radial-gradient(circle at 18% 18%, rgba(34, 197, 94, .34), transparent 60%),
        linear-gradient(135deg, rgba(5, 150, 105, .96), rgba(34, 197, 94, .96));
    border-color: rgba(34, 197, 94, .44);
}

/* FORM */
.contact-page .ct-form-section {
    padding: 78px 0;
}

.contact-page .ct-form-wrap {
    padding: 30px;
    border-radius: 36px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: var(--ct-shadow-mid);
}

.contact-page .ct-form-head {
    max-width: 900px;
    margin-bottom: 18px;
}

.contact-page .ct-form-head h2 {
    margin: 0;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.02;
    letter-spacing: -.05em;
    font-weight: 700;
    color: #fff;
}

.contact-page .ct-form-head p {
    margin: 14px 0 0;
    color: var(--ct-text-light-soft);
    font-size: 17px;
    line-height: 1.72;
}

.contact-page .ct-form-head strong {
    color: #fff;
}

.contact-page .ct-alert {
    margin: 0 0 14px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .10);
    font-size: 14px;
    line-height: 1.6;
}

.contact-page .ct-alert.ok {
    background: rgba(34, 211, 238, .10);
    border-color: rgba(34, 211, 238, .18);
    color: #fff;
}

.contact-page .ct-alert.err {
    background: rgba(248, 113, 113, .10);
    border-color: rgba(248, 113, 113, .22);
    color: #fff;
}

.contact-page .ct-alert ul {
    margin: 0;
    padding-left: 18px;
}

.contact-page .ct-form {
    display: block;
}

.contact-page .ct-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.contact-page .ct-field {
    display: block;
}

.contact-page .ct-field label {
    display: block;
    margin: 0 0 6px;
    color: rgba(245, 245, 247, .86);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -.01em;
}

.contact-page .ct-field input,
.contact-page .ct-field select,
.contact-page .ct-field textarea {
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(10, 12, 20, .65);
    color: #fff;
    padding: 12px 14px;
    font-size: 16px;
    outline: none;
    transition: border-color var(--ct-speed), box-shadow var(--ct-speed), background var(--ct-speed);
}

.contact-page .ct-field input::placeholder,
.contact-page .ct-field textarea::placeholder {
    color: rgba(245, 245, 247, .42);
}

.contact-page .ct-field input:focus,
.contact-page .ct-field select:focus,
.contact-page .ct-field textarea:focus {
    border-color: rgba(34, 211, 238, .24);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, .10);
    background: rgba(10, 12, 20, .80);
}

.contact-page .ct-field select {
    appearance: none;
    -webkit-appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, .7) 50%),
        linear-gradient(135deg, rgba(255, 255, 255, .7) 50%, transparent 50%);
    background-position:
        calc(100% - 18px) calc(50% - 3px),
        calc(100% - 12px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.contact-page .ct-field-full {
    margin-top: 12px;
}

.contact-page .ct-field textarea {
    min-height: 132px;
    resize: vertical;
}

.contact-page .ct-form-actions {
    margin-top: 14px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

/* FOOTER */
.contact-page .site-footer-apple {
    background: var(--ct-white-soft);
    color: var(--ct-text-dark);
    padding: 0 0 calc(28px + env(safe-area-inset-bottom));
}

.contact-page .footer-apple-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(17, 17, 17, .08);
}

.contact-page .footer-apple-bottom p {
    margin: 0;
    color: var(--ct-text-dark-faint);
    font-size: 13px;
}

.contact-page .footer-apple-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-page .footer-apple-links a {
    color: var(--ct-text-dark-faint);
    font-size: 13px;
}

.contact-page .footer-apple-links a:hover {
    color: var(--ct-text-dark);
}

/* MOBILE */
@media (max-width: 1200px) {

    .contact-page .ct-offices-grid,
    .contact-page .ct-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .contact-page .container {
        width: min(calc(100% - 28px), var(--ct-container));
    }

    .contact-page .site-header {
        background: rgba(0, 0, 0, .82);
    }

        .contact-page .header-row {
            grid-template-columns: 44px 1fr 44px;
            min-height: calc(76px + env(safe-area-inset-top));
            padding-top: env(safe-area-inset-top);
            gap
    }

    .contact-page .header-balance {
        width: 44px;
        height: 44px;
    }

    .contact-page .header-center {
        display: flex;
        justify-content: center;
        align-items: center;
        min-width: 0;
        position: relative;
    }

    .contact-page .main-nav {
        display: none;
    }

    .contact-page .brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
    }

    .contact-page .brand-logo-main {
        height: 58px;
    }

    .contact-page .header-actions {
        width: 44px;
        gap: 8px;
        justify-content: flex-end;
    }

    .contact-page .nav-toggle-label {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(255, 255, 255, .12);
        box-shadow: var(--ct-shadow-soft);
    }

    .contact-page .nav-toggle-label span {
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: #fff;
        display: block;
    }

    .contact-page .mobile-nav-shell {
        display: block;
    }

    .contact-page .mobile-nav {
        position: absolute;
        left: 14px;
        right: 14px;
        top: calc(100% + 10px);
        display: grid;
        gap: 8px;
        padding: 14px;
        background: rgba(12, 12, 14, .98);
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 22px;
        box-shadow: var(--ct-shadow-strong);
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        pointer-events: none;
        transition: opacity var(--ct-speed), visibility var(--ct-speed), transform var(--ct-speed);
        z-index: 110;
    }

    .contact-page .mobile-nav a {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: 0 14px;
        border-radius: 14px;
        color: #fff;
        font-weight: 650;
    }

    .contact-page .mobile-nav a:hover,
    .contact-page .mobile-nav a[aria-current="page"] {
        background: rgba(255, 255, 255, .06);
    }

    .contact-page #nav-toggle:checked~.nav-toggle-label+.mobile-nav-shell .mobile-nav,
    .contact-page #nav-toggle:checked~.mobile-nav-shell .mobile-nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .contact-page .ct-hero-copy h1 {
        font-size: clamp(34px, 9vw, 62px);
    }

    .contact-page .ct-hero-lead,
    .contact-page .ct-form-head p {
        font-size: 17px;
    }

    .contact-page .ct-office-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-page .ct-office-actions-top {
        justify-content: flex-start;
    }

    .contact-page .ct-rep {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .contact-page .ct-rep-actions {
        width: 100%;
        justify-content: flex-start;
        margin-top: 2px;
    }

    .contact-page .ct-map-wrap {
        height: 300px;
    }

    .contact-page .header-center {
        display: flex;
        justify-content: center;
        align-items: center;
        min-width: 0;
        position: relative;
        width: 100%;
    }

    .contact-page .brand {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
        z-index: 2;
    }
}

@media (max-width: 640px) {
    .contact-page .container {
        width: min(calc(100% - 22px), var(--ct-container));
    }

    .contact-page .brand-logo-main {
        height: 54px;
    }

    .contact-page .section-label {
        font-size: 11px;
        letter-spacing: .16em;
    }

    .contact-page .ct-hero {
        min-height: auto;
    }

    .contact-page .ct-hero-inner {
        min-height: 360px;
        padding-top: calc(20px + env(safe-area-inset-top));
        padding-bottom: 20px;
    }

    .contact-page .ct-hero-copy h1 {
        font-size: clamp(30px, 8vw, 44px);
        max-width: 13ch;
    }

    .contact-page .ct-office-card,
    .contact-page .ct-form-wrap,
    .contact-page .ct-map-wrap,
    .contact-page .ct-rep,
    .contact-page .ct-alert {
        border-radius: 24px;
    }

    .contact-page .ct-map-wrap {
        height: 260px;
    }

    .contact-page .ct-form-actions .btn {
        width: 100%;
    }

    .contact-page .footer-apple-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-page .mobile-nav {
        left: 11px;
        right: 11px;
        top: calc(100% + 8px);
    }
}