:root {
      --teal:   #0F7B6C;
      --teal-d: #085041;
      --teal-m: #1D9E75;
      --mint:   #E1F5EE;
      --mint-m: #9FE1CB;
      --pearl:  #F8F6F2;
      --night:  #1C2B3A;
      --stone:  #888780;
      --stone-l:#E5E2DA;
      --f-disp: 'Montserrat', system-ui, sans-serif;
      --f-sans: 'Montserrat', system-ui, sans-serif;
    }
    *  { box-sizing: border-box; }
    body { font-family: var(--f-sans); background: var(--pearl); color: #000; }
    a    { text-decoration: none; color: inherit; }

    /* ── HERO ─────────────────────────────────────────────── */
    .ct-hero { background: var(--night); min-height: 420px; position: relative; overflow: hidden; display: flex; align-items: flex-end; }
    .ct-hero::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(15,123,108,.12), transparent); }
    .ct-hero-deco { position: absolute; right: 48px; top: 32px; font-family: var(--f-disp); font-size: clamp(80px,13vw,180px); font-weight: 800; color: rgba(255,255,255,.025); line-height: 1; letter-spacing: -6px; user-select: none; z-index: 1; }
    .ct-hero-in { max-width: 1380px; margin: 0 auto; padding: 80px 48px 64px; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: flex-end; position: relative; z-index: 2; }
    .ct-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
    .ct-ey-line { width: 38px; height: 1px; background: var(--teal); }
    .ct-ey-text { font-size: 10px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: #fff; }
    .ct-h1 { font-family: var(--f-disp); font-size: clamp(48px,7vw,88px); font-weight: 800; color: #fff; line-height: .97; letter-spacing: -2.5px; }
    .ct-h1 em { font-style: normal; color: #fff; display: block; }
    .ct-right { display: flex; flex-direction: column; align-items: flex-end; justify-content: flex-end; padding-bottom: 6px; }
    .ct-info-line { display: flex; align-items: center; gap: 14px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.07); width: 100%; justify-content: flex-end; }
    .ct-info-line:first-child { border-top: 1px solid rgba(255,255,255,.07); }
    .cil-label { font-size: 9.5px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: #fff; }
    .cil-val { font-size: 16px; font-weight: 400; color: #fff; letter-spacing: -.3px; text-align: right; line-height: 1.35; }
    .cil-val a { color: #fff; transition: color .2s; }
    .cil-val a:hover { color: #fff; }

    /* ── FORM + BİLGİ ─────────────────────────────────────── */
    .ct-main {
      --ct-pad: clamp(18px, 3.2vh, 64px);
      --ct-pad-x: clamp(26px, 3.4vw, 72px);
      --vd-chrome-h: 132px;
      display: grid;
      grid-template-columns: 5fr 4fr;
      align-items: stretch;
    }
    @media (min-width: 1101px) {
      .ct-main {
        min-height: calc(100svh - var(--vd-chrome-h));
      }
    }

    .ct-form-col {
      background: #fff;
      color: #000;
      padding: var(--ct-pad) clamp(28px, 3.5vw, 68px) var(--ct-pad) var(--ct-pad-x);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      box-sizing: border-box;
    }
    .ct-form-col::before {
      content: '';
      position: absolute;
      top: var(--ct-pad);
      bottom: var(--ct-pad);
      left: 0;
      width: 2px;
      background: linear-gradient(180deg, transparent, var(--teal), transparent);
      opacity: .18;
    }
    .ct-form-intro { font-family: var(--f-disp); font-size: clamp(17px, 1.95vw, 30px); font-weight: 700; color: #000; line-height: 1.12; letter-spacing: -0.65px; margin-bottom: clamp(3px, 0.65vh, 7px); }
    .ct-form-intro em { font-style: normal; color: #000; }
    .ct-form-tagline { font-size: clamp(12px, 1.05vw, 13.5px); font-weight: 400; color: #000; line-height: 1.5; margin-bottom: clamp(12px, 2.2vh, 38px); max-width: 360px; }

    .ct-field { margin-bottom: clamp(9px, 1.55vh, 26px); position: relative; }
    .ct-field-label { display: block; font-size: 9.5px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase; color: #000; margin-bottom: clamp(4px, 0.75vh, 8px); transition: color .2s; }
    .ct-field:focus-within .ct-field-label { color: #000; }
    .ct-field-input, .ct-field-select, .ct-field-textarea {
      width: 100%; background: transparent; border: none;
      border-bottom: 1px solid var(--stone-l); padding: 0 0 clamp(5px, 0.95vh, 10px);
      font-family: var(--f-disp); font-size: clamp(13px, 0.98vw, 15px); font-weight: 400;
      color: #000; outline: none; transition: border-color .25s; border-radius: 0;
    }
    .ct-field-input:focus, .ct-field-select:focus, .ct-field-textarea:focus { border-bottom-color: var(--teal); }
    .ct-field-input::placeholder, .ct-field-textarea::placeholder { color: #000; opacity: .45; font-weight: 300; }
    .ct-field-textarea { resize: none; min-height: clamp(36px, 5.5vh, 56px); line-height: 1.45; }
    .ct-field-select { cursor: pointer; color: #000; }
    .ct-phone-row { display: flex; gap: 14px; }
    .ct-phone-code { background: transparent; border: none; border-bottom: 1px solid var(--stone-l); padding: 0 0 clamp(5px, 0.95vh, 10px); font-family: var(--f-disp); font-size: clamp(13px, 0.98vw, 15px); color: #000; outline: none; cursor: pointer; transition: border-color .25s; flex-shrink: 0; width: 100px; }
    .ct-phone-code:focus { border-bottom-color: var(--teal); }

    .ct-kvkk-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: clamp(6px, 1vh, 12px); }
    .ct-kvkk-cb { width: 16px; height: 16px; border: 1.5px solid var(--stone); border-radius: 3px; appearance: none; -webkit-appearance: none; cursor: pointer; flex-shrink: 0; margin-top: 2px; transition: all .2s; position: relative; background: transparent; }
    .ct-kvkk-cb:checked { background: var(--teal); border-color: var(--teal); }
    .ct-kvkk-cb:checked::after { content: ''; position: absolute; top: 2px; left: 4px; width: 5px; height: 9px; border: 1.5px solid white; border-top: none; border-left: none; transform: rotate(45deg); }
    .ct-kvkk-label { font-size: 11.5px; color: #000; line-height: 1.5; cursor: pointer; }
    .ct-kvkk-label strong { color: #000; font-weight: 600; }
    .ct-kvkk-label a { color: #000; border-bottom: 1px solid #000; }

    .ct-submit { display: inline-flex; align-items: center; gap: 12px; background: var(--night); color: #fff; border: none; padding: clamp(10px, 1.45vh, 14px) clamp(22px, 2.8vw, 32px); cursor: pointer; font-family: var(--f-disp); font-size: clamp(12px, 0.95vw, 13.5px); font-weight: 700; letter-spacing: .5px; transition: all .3s; margin-top: clamp(8px, 1.45vh, 22px); position: relative; overflow: hidden; flex-shrink: 0; }
    .ct-submit::before { content: ''; position: absolute; inset: 0; background: var(--teal); transform: translateX(-100%); transition: transform .35s cubic-bezier(.4,0,.2,1); }
    .ct-submit span, .ct-submit svg { position: relative; z-index: 1; }
    .ct-submit svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; transition: transform .25s; }
    .ct-submit:hover::before { transform: translateX(0); }
    .ct-submit:hover svg { transform: translateX(4px); }

    .ct-info-col {
      background: var(--night);
      color: #fff;
      padding: var(--ct-pad) clamp(32px, 3.5vw, 60px);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
      box-sizing: border-box;
    }
    .ct-info-col::after { content: ''; position: absolute; bottom: -60px; right: -60px; width: 280px; height: 280px; border-radius: 50%; border: 1px solid rgba(15,123,108,.07); }
    .ct-ib-label { font-size: 9px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: #fff; margin-bottom: 10px; }
    .ct-ib-val { font-size: clamp(15px, 1.25vw, 19px); font-weight: 400; color: #fff; line-height: 1.4; letter-spacing: -.3px; }
    .ct-ib-val a { color: #fff; border-bottom: 1px solid #fff; transition: all .2s; }
    .ct-ib-val a:hover { color: #fff; border-bottom-color: #fff; }
    .ct-ib-sub { font-size: 12.5px; font-weight: 400; color: #fff; margin-top: 5px; line-height: 1.6; }
    .ct-info-block { margin-bottom: clamp(14px, 2.2vh, 38px); }
    .ct-info-block:last-child { margin-bottom: 0; }

    .ct-hours-table { margin-top: clamp(6px, 1vh, 12px); }
    .ct-hours-row { display: flex; justify-content: space-between; align-items: center; padding: clamp(4px, 0.85vh, 9px) 0; border-bottom: 1px solid rgba(255,255,255,.06); }
    .ct-hours-row:last-child { border-bottom: none; }
    .ct-h-day { font-size: 12.5px; font-weight: 400; color: #fff; }
    .ct-h-time { font-size: 12.5px; font-weight: 400; color: #fff; }
    .ct-h-closed { color: #fff !important; }
    .ct-h-today { display: inline-block; background: rgba(255,255,255,.15); color: #fff; font-size: 9px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 2px 7px; border-radius: 3px; margin-left: 6px; }

    .ct-lotus-line { display: flex; align-items: flex-start; gap: 10px; padding: clamp(8px, 1.3vh, 16px) 0; border-top: 1px solid rgba(255,255,255,.07); margin-top: 4px; }
    .ct-lotus-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); flex-shrink: 0; margin-top: 5px; }
    .ct-lotus-txt { font-size: clamp(11px, 0.95vw, 12.5px); font-weight: 400; color: #fff; line-height: 1.5; }
    .ct-lotus-txt a { color: #fff; border-bottom: 1px solid #fff; transition: all .2s; }
    .ct-lotus-txt a:hover { color: #fff; }

    .ct-social-row { display: flex; gap: 10px; margin-top: clamp(12px, 2vh, 26px); flex-shrink: 0; }
    .ct-soc { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all .25s; cursor: pointer; }
    .ct-soc:hover { border-color: #fff; background: rgba(255,255,255,.08); }
    .ct-soc svg { width: 14px; height: 14px; fill: #fff; transition: fill .2s; }
    .ct-soc:hover svg { fill: #fff; }

    /* ── HARİTA ───────────────────────────────────────────── */
    .ct-map { position: relative; height: 380px; overflow: hidden; }
    .ct-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) brightness(.85) contrast(1.05); transition: filter .6s; display: block; }
    .ct-map:hover iframe { filter: grayscale(0) brightness(1); }
    .ct-map-card { position: absolute; top: 28px; left: 48px; background: #fff; padding: 22px 26px; max-width: 240px; box-shadow: 0 8px 40px rgba(28,43,58,.12); }
    .ct-mpc-eyebrow { font-size: 9px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: #000; margin-bottom: 7px; }
    .ct-mpc-name { font-family: var(--f-disp); font-size: 17px; font-weight: 700; color: #000; margin-bottom: 4px; }
    .ct-mpc-addr { font-size: 12px; font-weight: 400; color: #000; line-height: 1.6; }
    .ct-mpc-line { width: 26px; height: 1.5px; background: var(--teal); margin: 11px 0; }
    .ct-map-btns { position: absolute; bottom: 28px; left: 48px; display: flex; gap: 10px; }
    .ct-map-btn-p { display: inline-flex; align-items: center; gap: 7px; background: var(--teal); color: #fff; padding: 10px 18px; font-size: 12px; font-weight: 500; transition: background .2s; }
    .ct-map-btn-p:hover { background: var(--teal-d); }
    .ct-map-btn-s { display: inline-flex; align-items: center; gap: 7px; background: #fff; color: #000; padding: 10px 18px; font-size: 12px; font-weight: 500; border: 1px solid var(--stone-l); transition: all .2s; }
    .ct-map-btn-s:hover { border-color: #000; color: #000; }

    /* ── ULAŞIM ───────────────────────────────────────────── */
    .ct-transport { background: var(--pearl); padding: 72px 0; border-top: 1px solid var(--stone-l); }
    .ct-transport-in { max-width: 1380px; margin: 0 auto; padding: 0 48px; display: grid; grid-template-columns: 260px 1fr; gap: 80px; align-items: flex-start; }
    .ct-tr-label { font-family: var(--f-disp); font-size: clamp(26px,3vw,38px); font-weight: 700; color: #000; line-height: 1.15; letter-spacing: -1px; }
    .ct-tr-label em { font-style: normal; color: #000; }
    .ct-ti { display: flex; align-items: flex-start; gap: 22px; padding: 24px 0; border-bottom: 1px solid var(--stone-l); }
    .ct-ti:first-child { padding-top: 0; }
    .ct-ti:last-child { border-bottom: none; }
    .ct-ti-icon { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--stone-l); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .25s; }
    .ct-ti:hover .ct-ti-icon { border-color: var(--teal); background: var(--mint); }
    .ct-ti-icon svg { width: 18px; height: 18px; stroke: #000; fill: none; stroke-width: 1.8; stroke-linecap: round; transition: stroke .25s; }
    .ct-ti:hover .ct-ti-icon svg { stroke: #000; }
    .ct-ti-name { font-family: var(--f-disp); font-size: 14px; font-weight: 700; color: #000; margin-bottom: 4px; }
    .ct-ti-desc { font-size: 13.5px; font-weight: 400; color: #000; line-height: 1.7; }
    .ct-ti-dist { margin-left: auto; flex-shrink: 0; font-size: 15px; font-weight: 600; color: #000; padding-top: 2px; white-space: nowrap; }

    /* ── RESPONSIVE ───────────────────────────────────────── */
    @media (max-width: 1100px) {
      .ct-main { grid-template-columns: 1fr; min-height: 0; }
      .ct-form-col::before { display: none; }
      .ct-form-col,
      .ct-info-col { padding: clamp(28px, 4.5vw, 48px) clamp(20px, 4vw, 36px); }
      .ct-hero-in { grid-template-columns: 1fr; }
      .ct-right { align-items: flex-start; }
      .ct-transport-in { grid-template-columns: 1fr; gap: 32px; }
      .ct-map-card, .ct-map-btns { left: 24px; }
    }
    @media (max-width: 768px) {
      .ct-hero-deco { display: none; }
      .ct-hero { min-height: auto; }
      .ct-hero-in { padding: 48px 20px 40px; }
      .ct-form-col,
      .ct-info-col { padding: 40px clamp(18px, 5vw, 24px); }
      .ct-ib-val { font-size: 16px; }
      .ct-transport { padding: 48px 0; }
      .ct-transport-in { padding: 0 20px; }
      .ct-phone-row { flex-direction: column; gap: 0; }
      .ct-phone-code { width: 100%; max-width: none; }
      .ct-submit {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        box-sizing: border-box;
      }
      .ct-h-day,
      .ct-h-time { font-size: clamp(11px, 3vw, 12.5px); }
      .ct-social-row { flex-wrap: wrap; }
      .ct-map { height: 260px; }
      .ct-map-card { left: 16px; top: 16px; padding: 16px 18px; max-width: 200px; }
      .ct-mpc-name { font-size: 14px; }
      .ct-map-btns { left: 16px; bottom: 16px; }
    }
    @media (max-width: 480px) {
      .ct-form-col,
      .ct-info-col { padding: 28px 16px; }
    }