.contact-page { padding-top: 72px; min-height: 100vh; }

    /* HERO — standart alt sayfa hero yapısı */
    .contact-hero {
      position: relative;
      overflow: hidden;
      min-height: 420px;
      aspect-ratio: 3 / 1;
      display: flex;
      align-items: center;
      padding: 80px 56px 70px;
    }
    .contact-hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .contact-hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 50%;
      display: block;
    }
    .contact-hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        105deg,
        rgba(10, 10, 10, 0.82) 0%,
        rgba(10, 10, 10, 0.55) 40%,
        rgba(10, 10, 10, 0.2) 70%,
        rgba(10, 10, 10, 0.05) 100%
      );
    }
    .contact-hero-content {
      position: relative;
      z-index: 1;
      max-width: 62ch;
    }
    .contact-hero h1 {
      font-family: 'Inter', sans-serif;
      font-size: 2.6rem;
      font-weight: 600;
      color: #fff;
      margin-bottom: 20px;
      max-width: 600px;
      line-height: 1.25;
      text-shadow: 0 2px 16px rgba(0,0,0,0.3);
    }
    .contact-hero p {
      color: rgba(255,255,255,0.75);
      font-size: 1.05rem;
      font-weight: 300;
      max-width: 58ch;
      line-height: 1.8;
      text-shadow: 0 1px 8px rgba(0,0,0,0.2);
    }
    .contact-hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
      z-index: 1;
    }

    .contact-body { display: grid; grid-template-columns: 1fr 420px; gap: 0; max-width: 1200px; margin: 0 auto; padding: 0 56px; align-items: start; }
    .contact-form-wrap { padding: 56px 56px 56px 0; }
    .contact-form-wrap h2 { font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--black); margin-bottom: 28px; }
    .contact-sidebar { display: flex; flex-direction: column; gap: 24px; padding: 56px 0 56px 0; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
    .form-group { display: flex; flex-direction: column; margin-bottom: 16px; }
    .form-group label { font-size: 0.78rem; font-weight: 600; color: #555; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 6px; }

    .form-group input,
    .form-group select,
    .form-group textarea {
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      color: var(--black);
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 2px;
      padding: 11px 14px;
      outline: none;
      transition: border-color 0.2s;
      width: 100%;
      box-sizing: border-box;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--blue);
    }
    .form-group input:focus-visible,
    .form-group select:focus-visible,
    .form-group textarea:focus-visible,
    .kvkk-check input[type="checkbox"]:focus-visible,
    .submit-btn:focus-visible,
    .directions-link:focus-visible,
    .contact-card address a:focus-visible,
    .contact-page nav a:focus-visible,
    .contact-page button:focus-visible {
      outline: 2px solid #0072CE;
      outline-offset: 3px;
    }

    .form-group textarea { resize: vertical; min-height: 120px; }

    .form-group select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 36px;
      cursor: pointer;
    }

    .iti { width: 100%; }

    .iti__tel-input,
    .iti input[type="text"] {
      width: 100%;
      padding-top: 11px !important;
      padding-bottom: 11px !important;
      padding-right: 14px !important;
      box-sizing: border-box;
      border: 1px solid var(--border) !important;
      border-radius: 2px !important;
      font-family: 'Inter', sans-serif !important;
      font-size: 0.9rem !important;
      color: var(--black) !important;
      background: #fff !important;
      outline: none !important;
      transition: border-color 0.2s !important;
    }

    .iti input:focus { border-color: var(--blue) !important; }

    .iti--separate-dial-code .iti__selected-country {
      background-color: #fff;
      border-right: 1px solid var(--border);
      border-radius: 2px 0 0 2px;
    }

    .phone-helper { margin-top: 6px; font-size: 0.78rem; color: #777; line-height: 1.4; }

    .kvkk-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 24px; }
    .kvkk-check input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--blue); width: 15px; height: 15px; cursor: pointer; }
    .kvkk-check label { font-size: 0.82rem; color: #666; line-height: 1.6; text-transform: none; letter-spacing: normal; }
    .kvkk-check label a { color: var(--link-color); text-decoration: none; }
    .kvkk-check label a:hover { text-decoration: underline; }

    .submit-btn {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--black); color: #fff; border: none;
      font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 600;
      padding: 14px 32px; border-radius: 2px; cursor: pointer; transition: background 0.2s;
    }
    .submit-btn:hover { background: var(--blue); }
    .submit-btn:disabled { opacity: 0.7; cursor: not-allowed; }

      .form-success { display: none; background: rgba(63, 156, 53, 0.08); border: 1px solid #3F9C35; border-radius: 2px; padding: 16px 20px; color: #2f7428; font-size: 0.9rem; margin-top: 16px; }
      .form-error { display: none; background: #fff5f5; border: 1px solid #d9534f; border-radius: 2px; padding: 16px 20px; color: #b02a37; font-size: 0.9rem; margin-top: 16px; }
      .bot-trap {
        position: absolute !important;
        left: -10000px !important;
        width: 1px !important;
        height: 1px !important;
        overflow: hidden !important;
      }
      .turnstile-wrap { margin: 18px 0 8px; }
      .turnstile-status { display: none; font-size: 0.82rem; color: #666; margin-top: 8px; }
      .turnstile-status.is-visible { display: block; }

      .contact-card { background: var(--grey); border-top: 3px solid var(--blue); padding: 28px 24px; }
    .contact-card h3 { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 16px; }
    .contact-card address { font-style: normal; font-size: 0.88rem; color: #444; line-height: 1.9; }
    .contact-card address a { color: var(--link-color); text-decoration: none; }
    .contact-card address a:hover { text-decoration: underline; }
    .directions-links { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
    .directions-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 500; color: var(--link-color); text-decoration: none; transition: color 0.2s; }
    .directions-link:hover { color: var(--blue); }
    .directions-link svg { flex-shrink: 0; }
    .map-wrap { width: 100%; height: 240px; border: 1px solid var(--border); overflow: hidden; border-radius: 2px; }
    .map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

    @media (max-width: 900px) {
      .contact-hero { padding: 56px 24px 48px; aspect-ratio: 4 / 3; }
      .contact-hero h1 { font-size: 1.8rem; }
      .contact-body { grid-template-columns: 1fr; padding: 0 24px; }
      .contact-form-wrap { padding: 40px 0 0 0; margin-bottom: 0; }
      .contact-sidebar { padding: 0 0 40px 0; }
    }

    @media (max-width: 600px) {
      .contact-body { padding: 0 20px; }
      .form-row { grid-template-columns: 1fr; }
      .contact-hero h1 { font-size: 1.5rem; }
      .contact-hero p,
      .contact-card address,
      .kvkk-check label,
      .phone-helper { font-size: 0.86rem; line-height: 1.65; }
      .contact-form-wrap h2 { font-size: 1rem; margin-bottom: 22px; }
      .contact-card { padding: 22px 18px; }
      .map-wrap { height: 220px; }
      .submit-btn { width: 100%; justify-content: center; }
      .form-success,
      .form-error { padding: 14px 16px; font-size: 0.86rem; }
    }
